提交记录 7897
| 提交时间 |
评测时间 |
| 2019-01-25 19:34:56 |
2020-08-01 01:09:57 |
#include<cstdio>
#include<cstring>
#include<algorithm>
const int maxn=100000+3;
inline int getint(){
bool flag=0;
register int n=0;
register char ch=getchar();
while(ch<'0' || ch>'9'){
if(ch=='-')flag=1;
ch=getchar();
}
while(ch>='0' && ch<='9'){
n=ch-'0'+(n<<3)+(n<<1);
ch=getchar();
}
return flag?(-n):n;
}
int main(){
#ifndef ONLINE_JUDGE
freopen("input","r",stdin);
#endif
int a,b;
a=getint();
b=getint();
printf("%d\n",a+b);
return 0;
}
| Compilation | N/A | N/A | Compile OK | Score: N/A | 显示更多 |
| Testcase #1 | 10.39 us | 16 KB | Wrong Answer | Score: 0 | 显示更多 |
Judge Duck Online | 评测鸭在线
Server Time: 2026-04-07 17:28:17 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠