提交记录 6900
| 提交时间 |
评测时间 |
| 2018-11-15 20:27:46 |
2020-08-01 00:52:33 |
#include <bits/stdc++.h>
#define P 100000
extern inline char get()
{
static char R[P + 5], *S = R;
return *S ++;
}
inline int read ()
{
int p = 0, w = 1; char c = get();
while(!isdigit(c)) {if(c == '-') w = -1; c = get();}
while(isdigit(c)) {p = p * 10 + c - '0'; c = get();}
return p * w;
}
int main()
{
fread(R, 1, P, stdin);
int n, a, b;
n = read();
while(n --)
{
a = read(); b = read();
printf("%d\n",a + b);
}
return 0;
}
| Compilation | N/A | N/A | Compile Error | Score: N/A | 显示更多 |
Judge Duck Online | 评测鸭在线
Server Time: 2026-04-09 08:01:11 | Loaded in 0 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠