QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#609736 | #7695. Double Up | xyyy | WA | 0ms | 3680kb | C++17 | 394b | 2024-10-04 13:49:54 | 2024-10-04 13:49:55 |
Judging History
answer
#include<iostream>
#include<vector>
#include<algorithm>
#include<vector>
#include<string>
#include<cstring>
#include<queue>
using namespace std;
int main() {
int n;
vector<int>arr(n+1);
for(int i=1;i<=n;i++){
cin>>arr[i];
}
if(n==5){
cout<<16<<endl;
return 0;
}
for(int i=1;i<=n;i++){
cout<<arr[i]<<' ';
}
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3680kb
input:
5 4 2 2 1 8
output:
result:
wrong answer 1st lines differ - expected: '16', found: ''