提交记录 6846


用户 题目 状态 得分 用时 内存 语言 代码长度
leifeng_ 1000i. 【传统题】 A+B Problem Wrong Answer 0 12.17 us 16 KB C++ 592 B
提交时间 评测时间
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);
}

CompilationN/AN/ACompile OKScore: N/A

Testcase #112.17 us16 KBWrong AnswerScore: 0


Judge Duck Online | 评测鸭在线
Server Time: 2026-04-09 10:31:02 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠