提交记录 13052


用户 题目 状态 得分 用时 内存 语言 代码长度
15iq test. 自定义测试 Accepted 100 85.094 ms 12 KB C++11 249 B
提交时间 评测时间
2020-07-21 19:07:25 2023-09-03 19:40:26
#include <stdio.h>
const int P = 998244353;
void add(int &a, int &b) {
	a += b;
	if (a >= P) a -= P;
}
const int T = 1;
int main() {
	int ans = 0;
	for (int _ = 0; _ < T; _++)
	for (int i = 0; i < 100000000; i++) add(ans, i);
	printf("%d\n", ans);
}

CompilationN/AN/ACompile OKScore: N/A

Testcase #185.094 ms12 KBAcceptedScore: 100


Judge Duck Online | 评测鸭在线
Server Time: 2026-03-25 01:11:28 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠