提交记录 3520


用户 题目 状态 得分 用时 内存 语言 代码长度
RyeCatcher 1000i. 【传统题】 A+B Problem Accepted 100 33.8 us 12 KB C++11 349 B
提交时间 评测时间
2018-07-16 11:49:44 2020-07-31 21:18:46
#include <stdio.h>
template <class T>inline void read(T &x){
    x=0;int ne=0;char c;
    while('9'<(c=getchar())||c<'0')ne=c=='-';
    x=c-48;
    while((c=getchar())<='9'&&c>='0')x=(x<<3)+(x<<1)+c-48;
    x=ne?-x:x;return ;
}
int main(){
    int n,a,b;
    read(n);
    while(n--){
        read(a),read(b);printf("%d\n",a+b);
    }
    return 0;
}

CompilationN/AN/ACompile OKScore: N/A

Testcase #133.8 us12 KBAcceptedScore: 100


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