QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#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';
}
}
}
詳細信息
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