QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#271029 | #5304. Money Game | arahato | WA | 1ms | 3456kb | C++14 | 172b | 2023-12-01 20:44:21 | 2023-12-01 20:44:22 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
int n,x;
signed main(){
ios::sync_with_stdio(0);
cin>>n;
while(n--){
int x;
cin>>x;
cout<<x<<" ";
}
}
詳細信息
Test #1:
score: 100
Accepted
time: 1ms
memory: 3376kb
input:
2 4 2
output:
4 2
result:
ok 2 numbers
Test #2:
score: -100
Wrong Answer
time: 0ms
memory: 3456kb
input:
2 2 3
output:
2 3
result:
wrong answer 1st numbers differ - expected: '3.3333333', found: '2.0000000', error = '0.4000000'