提交记录 10009


用户 题目 状态 得分 用时 内存 语言 代码长度
iMMIQ 1000i. 【传统题】 A+B Problem Wrong Answer 0 7.02 us 12 KB C++ 410 B
提交时间 评测时间
2019-08-07 12:04:46 2020-08-01 02:00:23
#include<cstdio>
using namespace std;

inline int read() {
    int x = 0;
    char c = getchar();
    bool flag = 0;
    while(c < '0' || c > '9'){ 
        if(c == '-') flag=1;
        c=getchar();
    }
    while(c >= '0' && c <= '9') {
        x = x * 10 + c - '0';
        c=getchar();
    }
    return flag ? -x : x;
}

int main() {
    int a = read(), b = read();
    printf("%d", a + b);
    return 0;
}

CompilationN/AN/ACompile OKScore: N/A

Testcase #17.02 us12 KBWrong AnswerScore: 0


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