QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#735322#8041. Life is Hard and Undecidable, but...medicosWA 0ms3580kbC++17270b2024-11-11 19:13:592024-11-11 19:14:00

Judging History

This is the latest submission verdict.

  • [2024-11-11 19:14:00]
  • Judged
  • Verdict: WA
  • Time: 0ms
  • Memory: 3580kb
  • [2024-11-11 19:13:59]
  • Submitted

answer

#include <bits/stdc++.h>

using namespace std;

signed main() {
	ios::sync_with_stdio(0), cin.tie(0);
	
	int n;
	cin >> n;
	
	cout << 2 * n - 1 << "\n";
	for (int i = -250; i < -250 + 2 * n - 1; ++i) {
		cout << i << " " << 1 << "\n";
	}
	
	return 0;
}  

详细

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 3580kb

input:

1

output:

1
-250 1

result:

wrong answer Coordinate too small