提交记录 4662


用户 题目 状态 得分 用时 内存 语言 代码长度
ldxoi 1000i. 【传统题】 A+B Problem Accepted 100 38.91 us 12 KB C++ 346 B
提交时间 评测时间
2018-07-27 21:19:07 2020-07-31 23:10:33
#include <stdio.h>
#include<cctype>
inline int read(){
        int ans=0,w=1;
        char ch=getchar();
        while(!isdigit(ch)){if(ch=='-')w=-1;ch=getchar();}
        while(isdigit(ch))ans=(ans<<3)+(ans<<1)+(ch^48),ch=getchar();
        return ans*w;
}
int n;
int main() {
   n=read();
   while(n--)printf("%d\n",read()+read());
	return 0;
}

CompilationN/AN/ACompile OKScore: N/A

Testcase #138.91 us12 KBAcceptedScore: 100


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