提交记录 19198


用户 题目 状态 得分 用时 内存 语言 代码长度
02Ljh 1000. 测测你的 A+B Compile Error 0 0 ns 0 KB C++ 528 B
提交时间 评测时间
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);
}

CompilationN/AN/ACompile ErrorScore: N/A


Judge Duck Online | 评测鸭在线
Server Time: 2026-03-14 21:08:12 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠