QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#487313 | #6103. A+B Problem | hhw | WA | 0ms | 3948kb | C++23 | 143b | 2024-07-22 20:07:18 | 2024-07-22 20:07:18 |
Judging History
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