提交记录 4209
提交时间 |
评测时间 |
2018-07-18 22:45:25 |
2020-07-31 22:41:07 |
#include<stdio.h>
int read(){
int x=0;
bool f=1;
char c=getchar();
while(c<33)c=getchar();
if(c=='-')f=0,c=getchar();
while(c>47)x=x*10+c-48,c=getchar();
return f?x:-x;
}
int b[12],B;
void write(int x){
B=0;
if(!x){
putchar('0'),putchar('\n');
return;
}
if(x<0){
putchar('-');
x=-x;
}
while(x)b[++B]=x%10,x/=10;
while(B)putchar(48+b[B--]);
putchar('\n');
}
int main(){
int n;
n=read();
for(int i=0;i<n;++i){
int x,y;
x=read(),y=read();
write(x+y);
}
return 0;
}
Compilation | N/A | N/A | Compile OK | Score: N/A | 显示更多 |
Testcase #1 | 19.02 us | 12 KB | Accepted | Score: 100 | 显示更多 |
Judge Duck Online | 评测鸭在线
Server Time: 2024-11-23 22:48:58 | Loaded in 0 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠