提交记录 10674
提交时间 |
评测时间 |
2019-09-24 21:18:43 |
2020-08-01 02:18:57 |
#include <cstdio>
#include <cctype>
#define il inline
#define rgi register int
int n;
il int read()
{
rgi x = 0, f = 0, ch = getchar();
while(ch > '9' || ch < '0') f |= ch == '-', ch = getchar();
while('0' <= ch && ch <= '9') x = (x << 1) + (x << 3) + (ch ^ 48), ch = getchar();
return f ? -x : x;
}
int main()
{
n = read();
for(rgi i = 1; i <= n; ++i)
{
int a = read(), b = read();
printf("%d\n", a + b);
}
return 0;
}
Compilation | N/A | N/A | Compile OK | Score: N/A | 显示更多 |
Testcase #1 | 37.15 us | 12 KB | Accepted | Score: 100 | 显示更多 |
Judge Duck Online | 评测鸭在线
Server Time: 2024-11-23 23:35:42 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠