QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#609038#9415. MatrixAAA___#AC ✓0ms3748kbC++14414b2024-10-04 10:20:452024-10-04 10:20:51

Judging History

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

  • [2024-10-04 10:20:51]
  • 评测
  • 测评结果:AC
  • 用时:0ms
  • 内存:3748kb
  • [2024-10-04 10:20:45]
  • 提交

answer

#include<iostream>
using namespace std;
int n,a[55][55];
int main()
{
	cin>>n;
	a[1][1]=1;
	a[1][2]=2;
	a[2][1]=3;
	a[2][2]=4;
	int cnt=5;
	for(int k=3;k<=n;k++)
	{
		for(int i=1;i<=k;i++)
		  a[i][k]=cnt;
		cnt++;
		for(int j=1;j<k;j++)
		  a[k][j]=cnt;
		cnt++;
	}
	cout<<"Yes\n";
	for(int i=1;i<=n;i++)
	{
		for(int j=1;j<=n;j++)
		  cout<<a[i][j]<<" ";
		cout<<"\n";
	}
	return 0;
}

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

详细

Test #1:

score: 100
Accepted
time: 0ms
memory: 3556kb

input:

2

output:

Yes
1 2 
3 4 

result:

ok Correct. (1 test case)

Test #2:

score: 0
Accepted
time: 0ms
memory: 3660kb

input:

3

output:

Yes
1 2 5 
3 4 5 
6 6 5 

result:

ok Correct. (1 test case)

Test #3:

score: 0
Accepted
time: 0ms
memory: 3728kb

input:

4

output:

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

result:

ok Correct. (1 test case)

Test #4:

score: 0
Accepted
time: 0ms
memory: 3604kb

input:

5

output:

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

result:

ok Correct. (1 test case)

Test #5:

score: 0
Accepted
time: 0ms
memory: 3724kb

input:

6

output:

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

result:

ok Correct. (1 test case)

Test #6:

score: 0
Accepted
time: 0ms
memory: 3596kb

input:

7

output:

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

result:

ok Correct. (1 test case)

Test #7:

score: 0
Accepted
time: 0ms
memory: 3720kb

input:

8

output:

Yes
1 2 5 7 9 11 13 15 
3 4 5 7 9 11 13 15 
6 6 5 7 9 11 13 15 
8 8 8 7 9 11 13 15 
10 10 10 10 9 11 13 15 
12 12 12 12 12 11 13 15 
14 14 14 14 14 14 13 15 
16 16 16 16 16 16 16 15 

result:

ok Correct. (1 test case)

Test #8:

score: 0
Accepted
time: 0ms
memory: 3732kb

input:

9

output:

Yes
1 2 5 7 9 11 13 15 17 
3 4 5 7 9 11 13 15 17 
6 6 5 7 9 11 13 15 17 
8 8 8 7 9 11 13 15 17 
10 10 10 10 9 11 13 15 17 
12 12 12 12 12 11 13 15 17 
14 14 14 14 14 14 13 15 17 
16 16 16 16 16 16 16 15 17 
18 18 18 18 18 18 18 18 17 

result:

ok Correct. (1 test case)

Test #9:

score: 0
Accepted
time: 0ms
memory: 3652kb

input:

10

output:

Yes
1 2 5 7 9 11 13 15 17 19 
3 4 5 7 9 11 13 15 17 19 
6 6 5 7 9 11 13 15 17 19 
8 8 8 7 9 11 13 15 17 19 
10 10 10 10 9 11 13 15 17 19 
12 12 12 12 12 11 13 15 17 19 
14 14 14 14 14 14 13 15 17 19 
16 16 16 16 16 16 16 15 17 19 
18 18 18 18 18 18 18 18 17 19 
20 20 20 20 20 20 20 20 20 19 

result:

ok Correct. (1 test case)

Test #10:

score: 0
Accepted
time: 0ms
memory: 3728kb

input:

11

output:

Yes
1 2 5 7 9 11 13 15 17 19 21 
3 4 5 7 9 11 13 15 17 19 21 
6 6 5 7 9 11 13 15 17 19 21 
8 8 8 7 9 11 13 15 17 19 21 
10 10 10 10 9 11 13 15 17 19 21 
12 12 12 12 12 11 13 15 17 19 21 
14 14 14 14 14 14 13 15 17 19 21 
16 16 16 16 16 16 16 15 17 19 21 
18 18 18 18 18 18 18 18 17 19 21 
20 20 20 20...

result:

ok Correct. (1 test case)

Test #11:

score: 0
Accepted
time: 0ms
memory: 3596kb

input:

12

output:

Yes
1 2 5 7 9 11 13 15 17 19 21 23 
3 4 5 7 9 11 13 15 17 19 21 23 
6 6 5 7 9 11 13 15 17 19 21 23 
8 8 8 7 9 11 13 15 17 19 21 23 
10 10 10 10 9 11 13 15 17 19 21 23 
12 12 12 12 12 11 13 15 17 19 21 23 
14 14 14 14 14 14 13 15 17 19 21 23 
16 16 16 16 16 16 16 15 17 19 21 23 
18 18 18 18 18 18 18 ...

result:

ok Correct. (1 test case)

Test #12:

score: 0
Accepted
time: 0ms
memory: 3656kb

input:

13

output:

Yes
1 2 5 7 9 11 13 15 17 19 21 23 25 
3 4 5 7 9 11 13 15 17 19 21 23 25 
6 6 5 7 9 11 13 15 17 19 21 23 25 
8 8 8 7 9 11 13 15 17 19 21 23 25 
10 10 10 10 9 11 13 15 17 19 21 23 25 
12 12 12 12 12 11 13 15 17 19 21 23 25 
14 14 14 14 14 14 13 15 17 19 21 23 25 
16 16 16 16 16 16 16 15 17 19 21 23 2...

result:

ok Correct. (1 test case)

Test #13:

score: 0
Accepted
time: 0ms
memory: 3664kb

input:

14

output:

Yes
1 2 5 7 9 11 13 15 17 19 21 23 25 27 
3 4 5 7 9 11 13 15 17 19 21 23 25 27 
6 6 5 7 9 11 13 15 17 19 21 23 25 27 
8 8 8 7 9 11 13 15 17 19 21 23 25 27 
10 10 10 10 9 11 13 15 17 19 21 23 25 27 
12 12 12 12 12 11 13 15 17 19 21 23 25 27 
14 14 14 14 14 14 13 15 17 19 21 23 25 27 
16 16 16 16 16 1...

result:

ok Correct. (1 test case)

Test #14:

score: 0
Accepted
time: 0ms
memory: 3596kb

input:

15

output:

Yes
1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 
3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 
6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 
8 8 8 7 9 11 13 15 17 19 21 23 25 27 29 
10 10 10 10 9 11 13 15 17 19 21 23 25 27 29 
12 12 12 12 12 11 13 15 17 19 21 23 25 27 29 
14 14 14 14 14 14 13 15 17 19 21 23 25 27...

result:

ok Correct. (1 test case)

Test #15:

score: 0
Accepted
time: 0ms
memory: 3600kb

input:

16

output:

Yes
1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 
3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 
6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 
8 8 8 7 9 11 13 15 17 19 21 23 25 27 29 31 
10 10 10 10 9 11 13 15 17 19 21 23 25 27 29 31 
12 12 12 12 12 11 13 15 17 19 21 23 25 27 29 31 
14 14 14 14 14 14 13 15...

result:

ok Correct. (1 test case)

Test #16:

score: 0
Accepted
time: 0ms
memory: 3732kb

input:

17

output:

Yes
1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 
3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 
6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 
8 8 8 7 9 11 13 15 17 19 21 23 25 27 29 31 33 
10 10 10 10 9 11 13 15 17 19 21 23 25 27 29 31 33 
12 12 12 12 12 11 13 15 17 19 21 23 25 27 29 31 33 
14 14...

result:

ok Correct. (1 test case)

Test #17:

score: 0
Accepted
time: 0ms
memory: 3660kb

input:

18

output:

Yes
1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 
3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 
6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 
8 8 8 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 
10 10 10 10 9 11 13 15 17 19 21 23 25 27 29 31 33 35 
12 12 12 12 12 11 13 15 17 19 21 23 25 27 ...

result:

ok Correct. (1 test case)

Test #18:

score: 0
Accepted
time: 0ms
memory: 3660kb

input:

19

output:

Yes
1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 
3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 
6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 
8 8 8 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 
10 10 10 10 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 
12 12 12 12 12 11 13 15 17 ...

result:

ok Correct. (1 test case)

Test #19:

score: 0
Accepted
time: 0ms
memory: 3732kb

input:

20

output:

Yes
1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 
3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 
6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 
8 8 8 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 
10 10 10 10 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 
12 12 12 12 ...

result:

ok Correct. (1 test case)

Test #20:

score: 0
Accepted
time: 0ms
memory: 3720kb

input:

21

output:

Yes
1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 
3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 
6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 
8 8 8 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 
10 10 10 10 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 4...

result:

ok Correct. (1 test case)

Test #21:

score: 0
Accepted
time: 0ms
memory: 3728kb

input:

22

output:

Yes
1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 
3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 
6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 
8 8 8 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 
10 10 10 10 9 11 13 15 17 19 21 23 25 27 29 31 3...

result:

ok Correct. (1 test case)

Test #22:

score: 0
Accepted
time: 0ms
memory: 3744kb

input:

23

output:

Yes
1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 
3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 
6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 
8 8 8 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 
10 10 10 10 9 11 13 15 17 19 21 23 2...

result:

ok Correct. (1 test case)

Test #23:

score: 0
Accepted
time: 0ms
memory: 3604kb

input:

24

output:

Yes
1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 
3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 
6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 
8 8 8 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 
10 10 10 10 9 11 13 15 1...

result:

ok Correct. (1 test case)

Test #24:

score: 0
Accepted
time: 0ms
memory: 3664kb

input:

25

output:

Yes
1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 
3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 
6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 
8 8 8 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 
10 10 10 10 ...

result:

ok Correct. (1 test case)

Test #25:

score: 0
Accepted
time: 0ms
memory: 3724kb

input:

26

output:

Yes
1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 
3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 
6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 
8 8 8 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 
...

result:

ok Correct. (1 test case)

Test #26:

score: 0
Accepted
time: 0ms
memory: 3660kb

input:

27

output:

Yes
1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 
3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 
6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 
8 8 8 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 4...

result:

ok Correct. (1 test case)

Test #27:

score: 0
Accepted
time: 0ms
memory: 3680kb

input:

28

output:

Yes
1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 
3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 
6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 
8 8 8 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 4...

result:

ok Correct. (1 test case)

Test #28:

score: 0
Accepted
time: 0ms
memory: 3724kb

input:

29

output:

Yes
1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 
3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 
6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 
8 8 8 7 9 11 13 15 17 19 21 23 25 27 29 31 33 3...

result:

ok Correct. (1 test case)

Test #29:

score: 0
Accepted
time: 0ms
memory: 3732kb

input:

30

output:

Yes
1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 
3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 
6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 
8 8 8 7 9 11 13 15 17 19 21 23 25 27 2...

result:

ok Correct. (1 test case)

Test #30:

score: 0
Accepted
time: 0ms
memory: 3740kb

input:

31

output:

Yes
1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 
3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 
6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 
8 8 8 7 9 11 13 15 17 19 21 2...

result:

ok Correct. (1 test case)

Test #31:

score: 0
Accepted
time: 0ms
memory: 3656kb

input:

32

output:

Yes
1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 
3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 
6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 
8 8 8 7 9 11 13 15 1...

result:

ok Correct. (1 test case)

Test #32:

score: 0
Accepted
time: 0ms
memory: 3740kb

input:

33

output:

Yes
1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 
3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 
6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 
8 8 8 7 9 1...

result:

ok Correct. (1 test case)

Test #33:

score: 0
Accepted
time: 0ms
memory: 3652kb

input:

34

output:

Yes
1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 
3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 
6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 
8 ...

result:

ok Correct. (1 test case)

Test #34:

score: 0
Accepted
time: 0ms
memory: 3680kb

input:

35

output:

Yes
1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 
3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 
6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 ...

result:

ok Correct. (1 test case)

Test #35:

score: 0
Accepted
time: 0ms
memory: 3604kb

input:

36

output:

Yes
1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 
3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 
6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 ...

result:

ok Correct. (1 test case)

Test #36:

score: 0
Accepted
time: 0ms
memory: 3672kb

input:

37

output:

Yes
1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 
3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 
6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 ...

result:

ok Correct. (1 test case)

Test #37:

score: 0
Accepted
time: 0ms
memory: 3600kb

input:

38

output:

Yes
1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 
3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 
6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 ...

result:

ok Correct. (1 test case)

Test #38:

score: 0
Accepted
time: 0ms
memory: 3656kb

input:

39

output:

Yes
1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 
3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 
6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 ...

result:

ok Correct. (1 test case)

Test #39:

score: 0
Accepted
time: 0ms
memory: 3728kb

input:

40

output:

Yes
1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 
3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 
6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 ...

result:

ok Correct. (1 test case)

Test #40:

score: 0
Accepted
time: 0ms
memory: 3668kb

input:

41

output:

Yes
1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 
3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 
6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 ...

result:

ok Correct. (1 test case)

Test #41:

score: 0
Accepted
time: 0ms
memory: 3660kb

input:

42

output:

Yes
1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 
3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 
6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 ...

result:

ok Correct. (1 test case)

Test #42:

score: 0
Accepted
time: 0ms
memory: 3748kb

input:

43

output:

Yes
1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 85 
3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 85 
6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 ...

result:

ok Correct. (1 test case)

Test #43:

score: 0
Accepted
time: 0ms
memory: 3728kb

input:

44

output:

Yes
1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 85 87 
3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 85 87 
6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 ...

result:

ok Correct. (1 test case)

Test #44:

score: 0
Accepted
time: 0ms
memory: 3684kb

input:

45

output:

Yes
1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 85 87 89 
3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 85 87 89 
6 6 5 7 9 11 13 15 17 19 21 23 25 ...

result:

ok Correct. (1 test case)

Test #45:

score: 0
Accepted
time: 0ms
memory: 3684kb

input:

46

output:

Yes
1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 85 87 89 91 
3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 85 87 89 91 
6 6 5 7 9 11 13 15 17 19 21 ...

result:

ok Correct. (1 test case)

Test #46:

score: 0
Accepted
time: 0ms
memory: 3736kb

input:

47

output:

Yes
1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 85 87 89 91 93 
3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 85 87 89 91 93 
6 6 5 7 9 11 13 15 17 ...

result:

ok Correct. (1 test case)

Test #47:

score: 0
Accepted
time: 0ms
memory: 3748kb

input:

48

output:

Yes
1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 85 87 89 91 93 95 
3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 85 87 89 91 93 95 
6 6 5 7 9 11 13 ...

result:

ok Correct. (1 test case)

Test #48:

score: 0
Accepted
time: 0ms
memory: 3660kb

input:

49

output:

Yes
1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 85 87 89 91 93 95 97 
3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 85 87 89 91 93 95 97 
6 6 5 7 9 ...

result:

ok Correct. (1 test case)

Test #49:

score: 0
Accepted
time: 0ms
memory: 3684kb

input:

50

output:

Yes
1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 85 87 89 91 93 95 97 99 
3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 85 87 89 91 93 95 97 99 
6 6 ...

result:

ok Correct. (1 test case)

Extra Test:

score: 0
Extra Test Passed