提交记录 10673
| 提交时间 |
评测时间 |
| 2019-09-24 21:18:00 |
2020-08-01 02:18:56 |
#include <cstdio>
#include <cctype>
#define il inline
#define rgi register int
int n;
il int read()
{
rgi x = 0, f = 0, ch;
while(ch = getchar() && (ch > '9' || ch < '0')) f |= ch == '-';
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 | 1 ms | 8 KB | Time Limit Exceeded | Score: 0 | 显示更多 |
Judge Duck Online | 评测鸭在线
Server Time: 2026-03-29 03:10:08 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠