提交记录 3520
提交时间 |
评测时间 |
2018-07-16 11:49:44 |
2020-07-31 21:18:46 |
#include <stdio.h>
template <class T>inline void read(T &x){
x=0;int ne=0;char c;
while('9'<(c=getchar())||c<'0')ne=c=='-';
x=c-48;
while((c=getchar())<='9'&&c>='0')x=(x<<3)+(x<<1)+c-48;
x=ne?-x:x;return ;
}
int main(){
int n,a,b;
read(n);
while(n--){
read(a),read(b);printf("%d\n",a+b);
}
return 0;
}
Compilation | N/A | N/A | Compile OK | Score: N/A | 显示更多 |
Testcase #1 | 33.8 us | 12 KB | Accepted | Score: 100 | 显示更多 |
Judge Duck Online | 评测鸭在线
Server Time: 2024-11-23 22:53:10 | Loaded in 0 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠