提交记录 6766
| 提交时间 |
评测时间 |
| 2018-11-05 13:14:08 |
2020-08-01 00:49:30 |
#include<iostream>
#include<cstdio>
typedef long long ll;
ll read();
void write(ll);
int main()
{
write(read()+read());
return 0;
}
ll read()
{
ll ans=0,fh=1;char c=getchar();
while(c<'0'||c>'9'){
if(c=='-') fh=-1;
c=getchar();
}
while(c>='0'&&c<='9'){
ans=(ans<<3)+(ans<<1)+c-'0';
c=getchar();
}
return ans*fh;
}
void write(ll Num){
if(Num<0) putchar('-'),Num*=-1;
if(Num>=10) write(Num/10);
putchar(Num%10+'0');
}
| Compilation | N/A | N/A | Compile Error | Score: N/A | 显示更多 |
Judge Duck Online | 评测鸭在线
Server Time: 2026-04-09 14:01:32 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠