比赛 THUPC 2025 pre 评测结果 TTTTTTTTTTTTTTTTTTTTTTTTT
题目名称 挑战大模型 最终得分 0
用户昵称 彭欣越 运行时间 102.509 s
代码语言 C++ 内存使用 3.30 MiB
提交时间 2026-01-29 19:06:51
显示代码纯文本
#include <bits/stdc++.h>
using namespace std;
int sum1,sum2;
int main () {
	ios::sync_with_stdio(0);
	cin.tie(0),cout.tie(0);
	freopen("thupc_2025_pre_beat.in","r",stdin);
	freopen("thupc_2025_pre_beat.out","w",stdout);
	while (1) {
		sum1++;
		sum2+=sum1;
	}
	return 0;
}