提交记录 10011


用户 题目 状态 得分 用时 内存 语言 代码长度
iMMIQ 1000i. 【传统题】 A+B Problem Accepted 100 34.48 us 12 KB C++ 442 B
提交时间 评测时间
2019-08-07 12:05:53 2020-08-01 02:00:25
#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 n = read();
while(n--) {
    int a = read(), b = read();
    printf("%d\n", a + b);}
    return 0;
}

CompilationN/AN/ACompile OKScore: N/A

Testcase #134.48 us12 KBAcceptedScore: 100


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