提交记录 19198
| 提交时间 |
评测时间 |
| 2023-02-24 19:48:10 |
2023-02-24 19:48:11 |
__int128 read()
{
char ch_int128=getchar();
__int128 ans_128=0;
bool fla_int128=true;
if(ch_int128=='-') fla_int128=false;
else ans_128+=(ch_int128-'0');
ch_int128=getchar();
while(ch_int128>='0'&&ch_int128<='9')
{
ans_128=ans_128*10+(ch_int128-'0');
ch_int128=getchar();
}
if(!fla_int128) ans_128=-ans_128;
return ans_128;
}
void output(__int128 x_)
{
if(x_>9)
{
output(x_/10);
cout<<(int)(x_%10);
}
else
{
cout<<(int)(x_);
}
return ;
}
__int128 plus(__int128 a,__int128 b)
{
output(a+b);
}
| Compilation | N/A | N/A | Compile Error | Score: N/A | 显示更多 |
Judge Duck Online | 评测鸭在线
Server Time: 2026-03-14 21:08:12 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠