比赛 THUPC 2025 pre 评测结果 A
题目名称 好成绩 最终得分 100
用户昵称 汐汐很希希 运行时间 0.003 s
代码语言 C++ 内存使用 3.57 MiB
提交时间 2026-01-29 19:06:48
显示代码纯文本
#include<bits/stdc++.h>
#define ll long long
using namespace std;
const int N=1e6+10;
const int M=2e5+10;
const int MOD=1e9+7;
const int MAXX=2e9;
int main()
{
    freopen("thupc_2025_pre_M.in","r",stdin);
    freopen("thupc_2025_pre_M.out","w",stdout);
    
	for(int i=0;i<=150;i++){
		if(i%3==2&&i%5==3&&i%7==6){
			cout<<i<<endl;
			break;
		}
	}
	return 0;
}