QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#617702#7756. Omniscia Spares Nonewarner1129#WA 0ms3616kbC++14252b2024-10-06 16:43:232024-10-06 16:43:24

Judging History

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

  • [2024-10-06 16:43:24]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3616kb
  • [2024-10-06 16:43:23]
  • 提交

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