QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#617702 | #7756. Omniscia Spares None | warner1129# | WA | 0ms | 3616kb | C++14 | 252b | 2024-10-06 16:43:23 | 2024-10-06 16:43:24 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
int main(){
int n;
cin>>n;
if(n>=5){
cout<<"No\n";
}
else{
cout<<"Yes\n";
for(int i = 0;i<n;i++){
cout<<0<<" "<<i<<'\n';
}
}
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3616kb
input:
3
output:
Yes 0 0 0 1 0 2
result:
wrong output format Unexpected end of file - int32 expected