QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#537311#5304. Money GameSound_MediumWA 0ms3584kbC++23366b2024-08-30 09:49:102024-08-30 09:49:11

Judging History

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

  • [2024-08-30 09:49:11]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3584kb
  • [2024-08-30 09:49:10]
  • 提交

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'