QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#689271 | #9313. Make Max | 202314170117 | WA | 0ms | 3556kb | C++14 | 282b | 2024-10-30 16:07:32 | 2024-10-30 16:07:33 |
Judging History
answer
#include<iostream>
using namespace std;
void H(){
int a;
cin>>a;
while(a--){
int b;
cin>>b;
cout<<b<<' ';
}
cout<<endl;
}
int main(){
int t;
cin>>t;
while(t--){
H();
}
return 0;
}
詳細信息
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3556kb
input:
4 2 1 2 2 2 2 7 1 1 1 2 2 2 2 3 1 2 3
output:
1 2 2 2 1 1 1 2 2 2 2 1 2 3
result:
wrong answer 2nd numbers differ - expected: '0', found: '2'