QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#271029#5304. Money GamearahatoWA 1ms3456kbC++14172b2023-12-01 20:44:212023-12-01 20:44:22

Judging History

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

  • [2023-12-01 20:44:22]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3456kb
  • [2023-12-01 20:44:21]
  • 提交

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'