提交记录 17898
| 提交时间 |
评测时间 |
| 2022-07-27 22:46:17 |
2022-07-27 22:46:19 |
#include<bits/stdc++.h>
int n,a,b;
inline int read(){
char c=getchar();
int x=0;
bool s=0;
while(c<'0'||c>'9'){
if(c=='-')s=1;
c=getchar();
}
while(c>=48&&c<=57)
x=x*10+c-48,c=getchar();
return s?-x:x;
}
int main(){
std::ios::sync_with_stdio(0);
std::cout.tie(0);
n=read();
while(n--){
a=read();
b=read();
std::cout<<a+b<<'\n';
}
return 0;
}
| Compilation | N/A | N/A | Compile OK | Score: N/A | 显示更多 |
| Testcase #1 | 53.22 us | 64 KB | Accepted | Score: 100 | 显示更多 |
Judge Duck Online | 评测鸭在线
Server Time: 2026-03-16 19:37:29 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠