提交记录 13479


用户 题目 状态 得分 用时 内存 语言 代码长度
limingye 1000i. 【传统题】 A+B Problem Accepted 100 72.16 us 36 KB C++ 204 B
提交时间 评测时间
2020-08-05 13:15:14 2020-08-05 13:15:16
#include<cstdio>
#include<iostream>
using namespace std;
int n,a,b;
int main(){
	scanf("%d",&n);
	for(register int i=1;i<=n;i++){
	    scanf("%d%d",&a,&b);
            printf("%d\n",a+b);
	}
	return 0;
}

CompilationN/AN/ACompile OKScore: N/A

Testcase #172.16 us36 KBAcceptedScore: 100


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