提交记录 10674


用户 题目 状态 得分 用时 内存 语言 代码长度
Clever_Jimmy 1000i. 【传统题】 A+B Problem Accepted 100 37.15 us 12 KB C++ 471 B
提交时间 评测时间
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;
}

CompilationN/AN/ACompile OKScore: N/A

Testcase #137.15 us12 KBAcceptedScore: 100


Judge Duck Online | 评测鸭在线
Server Time: 2024-04-25 19:05:35 | Loaded in 0 ms | Server Status
个人娱乐项目,仅供学习交流使用