QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#258925 | #7619. Make SYSU Great Again I | PZheng | WA | 1ms | 3372kb | C++14 | 182b | 2023-11-20 14:02:00 | 2023-11-20 14:02:00 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
int main()
{
int n,k;
cin>>n>>k;
cout<<1<<' '<<1<<endl;
for(int i=2;i<=n;i++){
cout<<i/2<<' '<<i<<endl;
}
return 0;
}
詳細信息
Test #1:
score: 0
Wrong Answer
time: 1ms
memory: 3372kb
input:
3 6
output:
1 1 1 2 1 3
result:
wrong output format Unexpected end of file - int32 expected