提交记录 10673


用户 题目 状态 得分 用时 内存 语言 代码长度
Clever_Jimmy 1000i. 【传统题】 A+B Problem Time Limit Exceeded 0 1 ms 8 KB C++ 463 B
提交时间 评测时间
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;
}

CompilationN/AN/ACompile OKScore: N/A

Testcase #11 ms8 KBTime Limit ExceededScore: 0


Judge Duck Online | 评测鸭在线
Server Time: 2026-03-29 03:10:08 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠