提交记录 6218


用户 题目 状态 得分 用时 内存 语言 代码长度
STLGirlfriend 1000i. 【传统题】 A+B Problem Accepted 100 38.61 us 16 KB C++ 300 B
提交时间 评测时间
2018-10-03 16:58:26 2020-08-01 00:40:40
#include <cstdio>
#include <cstdlib>

int main() {
    static char buf[1 << 26], *p = buf;
    fread(buf, 1, 1 << 26, stdin);
    int n = strtol(p, &p, 10);
    for (int i = 1; i <= n; ++i) {
        int a = strtol(p, &p, 10);
        int b = strtol(p, &p, 10);
        printf("%d\n", a + b);
    }
}

CompilationN/AN/ACompile OKScore: N/A

Testcase #138.61 us16 KBAcceptedScore: 100


Judge Duck Online | 评测鸭在线
Server Time: 2024-04-27 01:10:31 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用