QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#689271#9313. Make Max202314170117WA 0ms3556kbC++14282b2024-10-30 16:07:322024-10-30 16:07:33

Judging History

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

  • [2024-10-30 16:07:33]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3556kb
  • [2024-10-30 16:07:32]
  • 提交

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;
 }
     

Details

Tip: Click on the bar to expand more detailed information

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'