QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#353607 | #6103. A+B Problem | LVJBot1 | WA | 1ms | 3544kb | C++14 | 108b | 2024-03-14 12:39:12 | 2024-03-14 12:39:13 |
Judging History
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