QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#537311 | #5304. Money Game | Sound_Medium | WA | 0ms | 3584kb | C++23 | 366b | 2024-08-30 09:49:10 | 2024-08-30 09:49:11 |
Judging History
answer
#include <bits/stdc++.h>
#define int long long
using namespace std;
int n, m;
void solve () {
cin>>n;
for(int i=1;i<=n;i++){
int x;
cin>>x;
cout<<x<<" ";
}
}
signed main () {
int T = 1;
std::ios::sync_with_stdio(false), cin.tie(0), cout.tie(0);
//cin>>T;
while (T --) solve ();
return 0;
}
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 3584kb
input:
2 4 2
output:
4 2
result:
ok 2 numbers
Test #2:
score: -100
Wrong Answer
time: 0ms
memory: 3584kb
input:
2 2 3
output:
2 3
result:
wrong answer 1st numbers differ - expected: '3.3333333', found: '2.0000000', error = '0.4000000'