提交记录 18817


用户 题目 状态 得分 用时 内存 语言 代码长度
beriholic 1000i. 【传统题】 A+B Problem Wrong Answer 0 7.2 us 12 KB C++ 434 B
提交时间 评测时间
2022-12-16 15:12:53 2022-12-16 15:12:55
#include "cstdio"

int read() {
    int x = 0, f = 1;
    char c = getchar();
    while (c < '0' || c > '9') {
        if (c == '-') f = -1;
        c = getchar();
    }
    while (c >= '0' && c <= '9') x = x * 10 + c - '0', c = getchar();
    return x * f;
}

void write(int x) {
    if (x < 0) putchar('-'), x = -x;
    if (x > 9) write(x / 10);
    putchar(x % 10 + '0');
}

int main() {
    write(read() + read());
    return 0;
}

CompilationN/AN/ACompile OKScore: N/A

Testcase #17.2 us12 KBWrong AnswerScore: 0


Judge Duck Online | 评测鸭在线
Server Time: 2025-09-16 16:55:11 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠