QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#630749#9415. Matrixucup-team004AC ✓1ms3720kbC++23652b2024-10-11 20:15:552024-10-11 20:15:55

Judging History

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

  • [2024-10-11 20:15:55]
  • 评测
  • 测评结果:AC
  • 用时:1ms
  • 内存:3720kb
  • [2024-10-11 20:15:55]
  • 提交

answer

#include <bits/stdc++.h>

using i64 = long long;
using u64 = unsigned long long;
using u32 = unsigned;

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    
    int n;
    std::cin >> n;
    
    std::cout << "Yes\n";
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < n; j++) {
            int a;
            if (i < 2 && j < 2) {
                a = i * 2 + j + 1;
            } else if (i >= j) {
                a = 2 * i + 2;
            } else {
                a = 2 * j + 1;
            }
            std::cout << a << " \n"[j == n - 1];
        }
    }
    
    return 0;
}

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

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

2

output:

Yes
1 2
3 4

result:

ok Correct. (1 test case)

Test #2:

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

input:

3

output:

Yes
1 2 5
3 4 5
6 6 6

result:

ok Correct. (1 test case)

Test #3:

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

input:

4

output:

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

result:

ok Correct. (1 test case)

Test #4:

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

input:

5

output:

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

result:

ok Correct. (1 test case)

Test #5:

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

input:

6

output:

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

result:

ok Correct. (1 test case)

Test #6:

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

input:

7

output:

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

result:

ok Correct. (1 test case)

Test #7:

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

input:

8

output:

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

result:

ok Correct. (1 test case)

Test #8:

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

input:

9

output:

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

result:

ok Correct. (1 test case)

Test #9:

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

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 6 7 9 11 13 15 17 19
8 8 8 8 9 11 13 15 17 19
10 10 10 10 10 11 13 15 17 19
12 12 12 12 12 12 13 15 17 19
14 14 14 14 14 14 14 15 17 19
16 16 16 16 16 16 16 16 17 19
18 18 18 18 18 18 18 18 18 19
20 20 20 20 20 20 20 20 20 20

result:

ok Correct. (1 test case)

Test #10:

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

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 6 7 9 11 13 15 17 19 21
8 8 8 8 9 11 13 15 17 19 21
10 10 10 10 10 11 13 15 17 19 21
12 12 12 12 12 12 13 15 17 19 21
14 14 14 14 14 14 14 15 17 19 21
16 16 16 16 16 16 16 16 17 19 21
18 18 18 18 18 18 18 18 18 19 21
20 20 20 20 20 20 2...

result:

ok Correct. (1 test case)

Test #11:

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

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 6 7 9 11 13 15 17 19 21 23
8 8 8 8 9 11 13 15 17 19 21 23
10 10 10 10 10 11 13 15 17 19 21 23
12 12 12 12 12 12 13 15 17 19 21 23
14 14 14 14 14 14 14 15 17 19 21 23
16 16 16 16 16 16 16 16 17 19 21 23
18 18 18 18 18 18 18 18 18 1...

result:

ok Correct. (1 test case)

Test #12:

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

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 6 7 9 11 13 15 17 19 21 23 25
8 8 8 8 9 11 13 15 17 19 21 23 25
10 10 10 10 10 11 13 15 17 19 21 23 25
12 12 12 12 12 12 13 15 17 19 21 23 25
14 14 14 14 14 14 14 15 17 19 21 23 25
16 16 16 16 16 16 16 16 17 19 21 23 25
18 1...

result:

ok Correct. (1 test case)

Test #13:

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

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 6 7 9 11 13 15 17 19 21 23 25 27
8 8 8 8 9 11 13 15 17 19 21 23 25 27
10 10 10 10 10 11 13 15 17 19 21 23 25 27
12 12 12 12 12 12 13 15 17 19 21 23 25 27
14 14 14 14 14 14 14 15 17 19 21 23 25 27
16 16 16 16 16 16 16 1...

result:

ok Correct. (1 test case)

Test #14:

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

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 6 7 9 11 13 15 17 19 21 23 25 27 29
8 8 8 8 9 11 13 15 17 19 21 23 25 27 29
10 10 10 10 10 11 13 15 17 19 21 23 25 27 29
12 12 12 12 12 12 13 15 17 19 21 23 25 27 29
14 14 14 14 14 14 14 15 17 19 21 23 25 27 29
1...

result:

ok Correct. (1 test case)

Test #15:

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

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 6 7 9 11 13 15 17 19 21 23 25 27 29 31
8 8 8 8 9 11 13 15 17 19 21 23 25 27 29 31
10 10 10 10 10 11 13 15 17 19 21 23 25 27 29 31
12 12 12 12 12 12 13 15 17 19 21 23 25 27 29 31
14 14 14 14 14 14 14 15 17 1...

result:

ok Correct. (1 test case)

Test #16:

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

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 6 7 9 11 13 15 17 19 21 23 25 27 29 31 33
8 8 8 8 9 11 13 15 17 19 21 23 25 27 29 31 33
10 10 10 10 10 11 13 15 17 19 21 23 25 27 29 31 33
12 12 12 12 12 12 13 15 17 19 21 23 25 27 29 31 33
14 14 14 1...

result:

ok Correct. (1 test case)

Test #17:

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

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 6 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35
8 8 8 8 9 11 13 15 17 19 21 23 25 27 29 31 33 35
10 10 10 10 10 11 13 15 17 19 21 23 25 27 29 31 33 35
12 12 12 12 12 12 13 15 17 19 21 23 25 27 29 3...

result:

ok Correct. (1 test case)

Test #18:

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

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 6 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37
8 8 8 8 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37
10 10 10 10 10 11 13 15 17 19 21 23 25 27 29 31 33 35 37
12 12 12 12 12 12 13 15 17 19 2...

result:

ok Correct. (1 test case)

Test #19:

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

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 6 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39
8 8 8 8 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39
10 10 10 10 10 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39
12 12 12 12 12 1...

result:

ok Correct. (1 test case)

Test #20:

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

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 6 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41
8 8 8 8 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41
10 10 10 10 10 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41
1...

result:

ok Correct. (1 test case)

Test #21:

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

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 6 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43
8 8 8 8 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43
10 10 10 10 10 11 13 15 17 19 21 23 25 27 29 31 33 3...

result:

ok Correct. (1 test case)

Test #22:

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

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 6 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45
8 8 8 8 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45
10 10 10 10 10 11 13 15 17 19 21 23 25 2...

result:

ok Correct. (1 test case)

Test #23:

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

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 6 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47
8 8 8 8 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47
10 10 10 10 10 11 13 15 17 1...

result:

ok Correct. (1 test case)

Test #24:

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

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 6 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 8 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 10 1...

result:

ok Correct. (1 test case)

Test #25:

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

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 6 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 8 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51
10 1...

result:

ok Correct. (1 test case)

Test #26:

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

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 6 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 8 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 4...

result:

ok Correct. (1 test case)

Test #27:

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

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 6 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 8 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 4...

result:

ok Correct. (1 test case)

Test #28:

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

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 6 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 8 9 11 13 15 17 19 21 23 25 27 29 31 33 35 3...

result:

ok Correct. (1 test case)

Test #29:

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

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 6 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 8 9 11 13 15 17 19 21 23 25 27 29 3...

result:

ok Correct. (1 test case)

Test #30:

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

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 6 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 8 9 11 13 15 17 19 21 23 2...

result:

ok Correct. (1 test case)

Test #31:

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

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 6 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 8 9 11 13 15 17 1...

result:

ok Correct. (1 test case)

Test #32:

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

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 6 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 8 9 11 1...

result:

ok Correct. (1 test case)

Test #33:

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

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 6 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 8 8...

result:

ok Correct. (1 test case)

Test #34:

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

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 6 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...

result:

ok Correct. (1 test case)

Test #35:

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

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 6 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...

result:

ok Correct. (1 test case)

Test #36:

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

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 6 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...

result:

ok Correct. (1 test case)

Test #37:

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

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 6 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...

result:

ok Correct. (1 test case)

Test #38:

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

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 6 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 #39:

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

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 6 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47...

result:

ok Correct. (1 test case)

Test #40:

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

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 6 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43...

result:

ok Correct. (1 test case)

Test #41:

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

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 6 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39...

result:

ok Correct. (1 test case)

Test #42:

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

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 6 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35...

result:

ok Correct. (1 test case)

Test #43:

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

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 6 7 9 11 13 15 17 19 21 23 25 27 29 31...

result:

ok Correct. (1 test case)

Test #44:

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

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 6 7 9 11 13 15 17 19 21 23 25 27...

result:

ok Correct. (1 test case)

Test #45:

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

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 6 7 9 11 13 15 17 19 21 23...

result:

ok Correct. (1 test case)

Test #46:

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

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 6 7 9 11 13 15 17 19...

result:

ok Correct. (1 test case)

Test #47:

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

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 6 7 9 11 13 15...

result:

ok Correct. (1 test case)

Test #48:

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

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 6 7 9 11...

result:

ok Correct. (1 test case)

Test #49:

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

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 6 ...

result:

ok Correct. (1 test case)

Extra Test:

score: 0
Extra Test Passed