QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#258925#7619. Make SYSU Great Again IPZhengWA 1ms3372kbC++14182b2023-11-20 14:02:002023-11-20 14:02:00

Judging History

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

  • [2023-11-20 14:02:00]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3372kb
  • [2023-11-20 14:02:00]
  • 提交

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;
}

Details

Tip: Click on the bar to expand more detailed information

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