提交记录 6846
| 提交时间 |
评测时间 |
| 2018-11-08 14:59:47 |
2020-08-01 00:50:47 |
#include<cstdio>
inline int read()
{
char c='A';
bool f=false;
for (;(c<'0'||c>'9')&&scanf ("%c",&c)!=EOF;) if (c=='-') f=true;
int num=c-'0';
for (;scanf ("%c",&c)!=EOF&&(c>='0'&&c<='9');) num=num*10+c-'0';
return f?-num:num;
}/*
inline int read()
{
char c;bool f=false;int a=0;
for (;!((((c=getchar())>='0')&&(c<='9'))||(c=='-')););
if (c=='-') f=true;
else {a=c-'0';}
for (;(c=getchar())>='0'&&c<='9';)
{a=a*10+c-'0';}
return f?-a:a;
}*/
int main()
{
// freopen("test.txt","r",stdin);
// freopen("test.out","w",stdout);
int a,b;
a=read();b=read();
printf ("%d",a+b);
}
| Compilation | N/A | N/A | Compile OK | Score: N/A | 显示更多 |
| Testcase #1 | 12.17 us | 16 KB | Wrong Answer | Score: 0 | 显示更多 |
Judge Duck Online | 评测鸭在线
Server Time: 2026-04-09 10:31:02 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠