QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#487313#6103. A+B ProblemhhwWA 0ms3948kbC++23143b2024-07-22 20:07:182024-07-22 20:07:18

Judging History

你现在查看的是最新测评结果

  • [2024-07-22 20:07:18]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3948kb
  • [2024-07-22 20:07:18]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
long long a,b;
int main()
{
	scanf("%lld%lld",&a,&b);
	printf("%lld",a+b); 
	return 0;
}

详细

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 3948kb

input:

4
1
1
1

output:

5

result:

wrong output format Unexpected end of file - int32 expected