提交记录 17678


用户 题目 状态 得分 用时 内存 语言 代码长度
luanyi 1000i. 【传统题】 A+B Problem Accepted 100 101.62 us 36 KB C++ 138 B
提交时间 评测时间
2022-04-29 13:53:12 2022-04-29 13:53:13
#include <iostream>
using namespace std;

int main() {
int n; cin >> n; while (n--) {
	int a, b; cin >> a >> b; cout << a + b << endl;}
}

CompilationN/AN/ACompile OKScore: N/A

Testcase #1101.62 us36 KBAcceptedScore: 100


Judge Duck Online | 评测鸭在线
Server Time: 2024-04-27 06:41:26 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用