QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#609587#8934. Challenge NPCucup-team4975#AC ✓68ms5312kbC++23758b2024-10-04 13:29:542024-10-04 13:29:58

Judging History

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

  • [2024-10-04 13:29:58]
  • 评测
  • 测评结果:AC
  • 用时:68ms
  • 内存:5312kb
  • [2024-10-04 13:29:54]
  • 提交

answer

#include <bits/stdc++.h>
#define fir first
#define sec second
#define el '\n'
using namespace std;
using PII = pair<int, int>;
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int k;
	cin >> k;
	int cnt = 0;
	vector<PII> ans;
	for (int i = 1; i <= (k + 2) * 2; i += 2) {
		for (int j = 2; j < i; j += 2) {
			ans.push_back(PII(i, j));
		}
	}
	for (int i = 2; i <= (k + 2) * 2; i += 2) {
		for (int j = 1; j < i - 1; j += 2) {
			ans.push_back(PII(i, j));
		}
	}
	cout << (k + 2) * 2 << " " << ans.size() << " " << "2" << endl;
	for (int i = 1; i <= (k + 2) * 2; i++) {
		cout << i % 2 + 1 << " ";
	}
	cout << endl;
	for (int i = 0; i < ans.size(); i++) {
		cout << ans[i].fir << " " << ans[i].sec << endl;
	}
}

这程序好像有点Bug,我给组数据试试?

详细

Test #1:

score: 100
Accepted
time: 1ms
memory: 3604kb

input:

1

output:

6 6 2
2 1 2 1 2 1 
3 2
5 2
5 4
4 1
6 1
6 3

result:

ok ok

Test #2:

score: 0
Accepted
time: 1ms
memory: 3524kb

input:

2

output:

8 12 2
2 1 2 1 2 1 2 1 
3 2
5 2
5 4
7 2
7 4
7 6
4 1
6 1
6 3
8 1
8 3
8 5

result:

ok ok

Test #3:

score: 0
Accepted
time: 1ms
memory: 3808kb

input:

3

output:

10 20 2
2 1 2 1 2 1 2 1 2 1 
3 2
5 2
5 4
7 2
7 4
7 6
9 2
9 4
9 6
9 8
4 1
6 1
6 3
8 1
8 3
8 5
10 1
10 3
10 5
10 7

result:

ok ok

Test #4:

score: 0
Accepted
time: 1ms
memory: 3524kb

input:

4

output:

12 30 2
2 1 2 1 2 1 2 1 2 1 2 1 
3 2
5 2
5 4
7 2
7 4
7 6
9 2
9 4
9 6
9 8
11 2
11 4
11 6
11 8
11 10
4 1
6 1
6 3
8 1
8 3
8 5
10 1
10 3
10 5
10 7
12 1
12 3
12 5
12 7
12 9

result:

ok ok

Test #5:

score: 0
Accepted
time: 1ms
memory: 3816kb

input:

5

output:

14 42 2
2 1 2 1 2 1 2 1 2 1 2 1 2 1 
3 2
5 2
5 4
7 2
7 4
7 6
9 2
9 4
9 6
9 8
11 2
11 4
11 6
11 8
11 10
13 2
13 4
13 6
13 8
13 10
13 12
4 1
6 1
6 3
8 1
8 3
8 5
10 1
10 3
10 5
10 7
12 1
12 3
12 5
12 7
12 9
14 1
14 3
14 5
14 7
14 9
14 11

result:

ok ok

Test #6:

score: 0
Accepted
time: 39ms
memory: 5312kb

input:

433

output:

870 188790 2
2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1...

result:

ok ok

Test #7:

score: 0
Accepted
time: 68ms
memory: 5112kb

input:

500

output:

1004 251502 2
2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 ...

result:

ok ok

Test #8:

score: 0
Accepted
time: 68ms
memory: 5112kb

input:

499

output:

1002 250500 2
2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 ...

result:

ok ok

Test #9:

score: 0
Accepted
time: 68ms
memory: 5312kb

input:

457

output:

918 210222 2
2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1...

result:

ok ok

Test #10:

score: 0
Accepted
time: 47ms
memory: 5116kb

input:

497

output:

998 248502 2
2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1...

result:

ok ok

Extra Test:

score: 0
Extra Test Passed