QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#689490 | #7619. Make SYSU Great Again I | lllei# | WA | 0ms | 3648kb | C++20 | 506b | 2024-10-30 17:21:40 | 2024-10-30 17:21:40 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
int n,k;
int main()
{
ios::sync_with_stdio(0);
cin.tie(0);
cin>>n>>k;
int flag=0,x=1,y=1;
for(int i=1;i<=2*n-1;i++)
{
cout<<x<<" "<<y<<'\n';
if(flag==0)x++;
else y++;
flag^=1;
}
k-=2*n-1;
for(int i=1;i<=n;i++)
for(int j=1;j<=n;j++)
{
if(i==j||i-1==j)continue;
cout<<i<<" "<<j<<'\n';
k--;
if(k==0)return 0;
}
return 0;
}
詳細信息
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3648kb
input:
3 6
output:
1 1 2 1 2 2 3 2 3 3 1 2
result:
wrong answer The answer is wrong: The maximum common divisor of row 3 and column 1714095232 is not the same.