提交记录 28518


用户 题目 状态 得分 用时 内存 语言 代码长度
Jerry88 1000i. 【传统题】 A+B Problem Accepted 100 73.5 us 68 KB C++ 213 B
提交时间 评测时间
2025-09-21 13:13:47 2025-09-21 13:13:49
#include <bits/stdc++.h>
using namespace std;
int main() {
	ios::sync_with_stdio(0), cin.tie(0);
	int n;
	cin >> n;
	while (n--) {
		int a, b;
		cin >> a >> b;
		int c = a + b;
		cout << c << "\n";
	}
	return 0;
}

CompilationN/AN/ACompile OKScore: N/A

Testcase #173.5 us68 KBAcceptedScore: 100


Judge Duck Online | 评测鸭在线
Server Time: 2025-10-26 18:21:38 | Loaded in 0 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠