QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#353607#6103. A+B ProblemLVJBot1WA 1ms3544kbC++14108b2024-03-14 12:39:122024-03-14 12:39:13

Judging History

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

  • [2024-03-14 12:39:13]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3544kb
  • [2024-03-14 12:39:12]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std; int a,b; int ans; int main(){ cin>>a>>b; cout<<a+b; return 0; }

详细

Test #1:

score: 0
Wrong Answer
time: 1ms
memory: 3544kb

input:

4
1
1
1

output:

5

result:

wrong output format Unexpected end of file - int32 expected