QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#393914#7756. Omniscia Spares NoneNATURAL6AC ✓0ms3976kbC++141.5kb2024-04-19 16:47:012024-04-19 16:47:01

Judging History

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

  • [2024-04-19 16:47:01]
  • 评测
  • 测评结果:AC
  • 用时:0ms
  • 内存:3976kb
  • [2024-04-19 16:47:01]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
inline int qread()
{
    int a=0,f=1;char ch=getchar();
    while(!isdigit(ch)){if(ch=='-')f=-1;ch=getchar();}
    while(isdigit(ch)){(a*=10)+=(ch^48);ch=getchar();}
    return a*f;
}
int n;
vector< pair<int,int> >e;
int main()
{
    n=qread();
    if(n<=4)
    {
        puts("Yes");
        for(int i=1;i<=n;++i)printf("%d %d\n",i,i);
        printf("%d",0);
        return 0;
    }
    if(n<=6||n&1)return puts("No"),0;
    puts("Yes");
    printf("1 0\n-1 0\n0 1\n0 -1\n");
    e.emplace_back(make_pair(1,3));
    e.emplace_back(make_pair(1,4));
    e.emplace_back(make_pair(2,3));
    e.emplace_back(make_pair(2,4));
    e.emplace_back(make_pair(3,4));
    for(int i=6;i<=n;i+=2)
    {
        if(i%4==2)
        {
            if(i==n-2)printf("10000000 10000\n-10000000 10000\n");
            else printf("%d %d\n%d %d\n",i,0,-i,0);
            for(int j=i-5;j<=i-2;++j)
            {
                if((j&3)^2)e.emplace_back(make_pair(j,i-1));
                if((j&3)^1)e.emplace_back(make_pair(j,i));
            }
        }
        else
        {
            if(i==n-2)printf("10000 10000000\n10000 -10000000\n");
            else printf("%d %d\n%d %d\n",0,i,0,-i);
            for(int j=i-5;j<=i-2;++j)
            {
                if((j&3)^0)e.emplace_back(make_pair(j,i-1));
                if((j&3)^3)e.emplace_back(make_pair(j,i));
            }
        }
    }
    e.emplace_back(make_pair(n-2,n-3));
    printf("%d\n",(int)e.size());
    for(pair<int,int>i:e)printf("%d %d\n",i.first,i.second);
    return 0;
}

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

详细

Test #1:

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

input:

3

output:

Yes
1 1
2 2
3 3
0

result:

ok OK, Accepted.

Test #2:

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

input:

4

output:

Yes
1 1
2 2
3 3
4 4
0

result:

ok OK, Accepted.

Test #3:

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

input:

1

output:

Yes
1 1
0

result:

ok OK, Accepted.

Test #4:

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

input:

2

output:

Yes
1 1
2 2
0

result:

ok OK, Accepted.

Test #5:

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

input:

5

output:

No

result:

ok OK, Accepted.

Test #6:

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

input:

6

output:

No

result:

ok OK, Accepted.

Test #7:

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

input:

7

output:

No

result:

ok OK, Accepted.

Test #8:

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

input:

8

output:

Yes
1 0
-1 0
0 1
0 -1
10000000 10000
-10000000 10000
0 8
0 -8
18
1 3
1 4
2 3
2 4
3 4
1 5
2 6
3 5
3 6
4 5
4 6
3 7
4 8
5 7
5 8
6 7
6 8
6 5

result:

ok OK, Accepted.

Test #9:

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

input:

9

output:

No

result:

ok OK, Accepted.

Test #10:

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

input:

10

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
10000 10000000
10000 -10000000
10 0
-10 0
24
1 3
1 4
2 3
2 4
3 4
1 5
2 6
3 5
3 6
4 5
4 6
3 7
4 8
5 7
5 8
6 7
6 8
5 9
6 10
7 9
7 10
8 9
8 10
8 7

result:

ok OK, Accepted.

Test #11:

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

input:

11

output:

No

result:

ok OK, Accepted.

Test #12:

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

input:

12

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10000000 10000
-10000000 10000
0 12
0 -12
30
1 3
1 4
2 3
2 4
3 4
1 5
2 6
3 5
3 6
4 5
4 6
3 7
4 8
5 7
5 8
6 7
6 8
5 9
6 10
7 9
7 10
8 9
8 10
7 11
8 12
9 11
9 12
10 11
10 12
10 9

result:

ok OK, Accepted.

Test #13:

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

input:

13

output:

No

result:

ok OK, Accepted.

Test #14:

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

input:

14

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
10000 10000000
10000 -10000000
14 0
-14 0
36
1 3
1 4
2 3
2 4
3 4
1 5
2 6
3 5
3 6
4 5
4 6
3 7
4 8
5 7
5 8
6 7
6 8
5 9
6 10
7 9
7 10
8 9
8 10
7 11
8 12
9 11
9 12
10 11
10 12
9 13
10 14
11 13
11 14
12 13
12 14
12 11

result:

ok OK, Accepted.

Test #15:

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

input:

15

output:

No

result:

ok OK, Accepted.

Test #16:

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

input:

16

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
10000000 10000
-10000000 10000
0 16
0 -16
42
1 3
1 4
2 3
2 4
3 4
1 5
2 6
3 5
3 6
4 5
4 6
3 7
4 8
5 7
5 8
6 7
6 8
5 9
6 10
7 9
7 10
8 9
8 10
7 11
8 12
9 11
9 12
10 11
10 12
9 13
10 14
11 13
11 14
12 13
12 14
11 15
12 16
13 15
13 16
14 15
1...

result:

ok OK, Accepted.

Test #17:

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

input:

17

output:

No

result:

ok OK, Accepted.

Test #18:

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

input:

18

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
14 0
-14 0
10000 10000000
10000 -10000000
18 0
-18 0
48
1 3
1 4
2 3
2 4
3 4
1 5
2 6
3 5
3 6
4 5
4 6
3 7
4 8
5 7
5 8
6 7
6 8
5 9
6 10
7 9
7 10
8 9
8 10
7 11
8 12
9 11
9 12
10 11
10 12
9 13
10 14
11 13
11 14
12 13
12 14
11 15
12 16
13 15
13...

result:

ok OK, Accepted.

Test #19:

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

input:

19

output:

No

result:

ok OK, Accepted.

Test #20:

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

input:

20

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
14 0
-14 0
0 16
0 -16
10000000 10000
-10000000 10000
0 20
0 -20
54
1 3
1 4
2 3
2 4
3 4
1 5
2 6
3 5
3 6
4 5
4 6
3 7
4 8
5 7
5 8
6 7
6 8
5 9
6 10
7 9
7 10
8 9
8 10
7 11
8 12
9 11
9 12
10 11
10 12
9 13
10 14
11 13
11 14
12 13
12 14
11 15
12 ...

result:

ok OK, Accepted.

Test #21:

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

input:

21

output:

No

result:

ok OK, Accepted.

Test #22:

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

input:

22

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
14 0
-14 0
0 16
0 -16
18 0
-18 0
10000 10000000
10000 -10000000
22 0
-22 0
60
1 3
1 4
2 3
2 4
3 4
1 5
2 6
3 5
3 6
4 5
4 6
3 7
4 8
5 7
5 8
6 7
6 8
5 9
6 10
7 9
7 10
8 9
8 10
7 11
8 12
9 11
9 12
10 11
10 12
9 13
10 14
11 13
11 14
12 13
12 1...

result:

ok OK, Accepted.

Test #23:

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

input:

23

output:

No

result:

ok OK, Accepted.

Test #24:

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

input:

24

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
14 0
-14 0
0 16
0 -16
18 0
-18 0
0 20
0 -20
10000000 10000
-10000000 10000
0 24
0 -24
66
1 3
1 4
2 3
2 4
3 4
1 5
2 6
3 5
3 6
4 5
4 6
3 7
4 8
5 7
5 8
6 7
6 8
5 9
6 10
7 9
7 10
8 9
8 10
7 11
8 12
9 11
9 12
10 11
10 12
9 13
10 14
11 13
11 14...

result:

ok OK, Accepted.

Test #25:

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

input:

25

output:

No

result:

ok OK, Accepted.

Test #26:

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

input:

26

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
14 0
-14 0
0 16
0 -16
18 0
-18 0
0 20
0 -20
22 0
-22 0
10000 10000000
10000 -10000000
26 0
-26 0
72
1 3
1 4
2 3
2 4
3 4
1 5
2 6
3 5
3 6
4 5
4 6
3 7
4 8
5 7
5 8
6 7
6 8
5 9
6 10
7 9
7 10
8 9
8 10
7 11
8 12
9 11
9 12
10 11
10 12
9 13
10 14
...

result:

ok OK, Accepted.

Test #27:

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

input:

27

output:

No

result:

ok OK, Accepted.

Test #28:

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

input:

28

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
14 0
-14 0
0 16
0 -16
18 0
-18 0
0 20
0 -20
22 0
-22 0
0 24
0 -24
10000000 10000
-10000000 10000
0 28
0 -28
78
1 3
1 4
2 3
2 4
3 4
1 5
2 6
3 5
3 6
4 5
4 6
3 7
4 8
5 7
5 8
6 7
6 8
5 9
6 10
7 9
7 10
8 9
8 10
7 11
8 12
9 11
9 12
10 11
10 12
...

result:

ok OK, Accepted.

Test #29:

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

input:

29

output:

No

result:

ok OK, Accepted.

Test #30:

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

input:

30

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
14 0
-14 0
0 16
0 -16
18 0
-18 0
0 20
0 -20
22 0
-22 0
0 24
0 -24
26 0
-26 0
10000 10000000
10000 -10000000
30 0
-30 0
84
1 3
1 4
2 3
2 4
3 4
1 5
2 6
3 5
3 6
4 5
4 6
3 7
4 8
5 7
5 8
6 7
6 8
5 9
6 10
7 9
7 10
8 9
8 10
7 11
8 12
9 11
9 12
1...

result:

ok OK, Accepted.

Test #31:

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

input:

31

output:

No

result:

ok OK, Accepted.

Test #32:

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

input:

32

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
14 0
-14 0
0 16
0 -16
18 0
-18 0
0 20
0 -20
22 0
-22 0
0 24
0 -24
26 0
-26 0
0 28
0 -28
10000000 10000
-10000000 10000
0 32
0 -32
90
1 3
1 4
2 3
2 4
3 4
1 5
2 6
3 5
3 6
4 5
4 6
3 7
4 8
5 7
5 8
6 7
6 8
5 9
6 10
7 9
7 10
8 9
8 10
7 11
8 12
...

result:

ok OK, Accepted.

Test #33:

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

input:

33

output:

No

result:

ok OK, Accepted.

Test #34:

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

input:

34

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
14 0
-14 0
0 16
0 -16
18 0
-18 0
0 20
0 -20
22 0
-22 0
0 24
0 -24
26 0
-26 0
0 28
0 -28
30 0
-30 0
10000 10000000
10000 -10000000
34 0
-34 0
96
1 3
1 4
2 3
2 4
3 4
1 5
2 6
3 5
3 6
4 5
4 6
3 7
4 8
5 7
5 8
6 7
6 8
5 9
6 10
7 9
7 10
8 9
8 10...

result:

ok OK, Accepted.

Test #35:

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

input:

35

output:

No

result:

ok OK, Accepted.

Test #36:

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

input:

36

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
14 0
-14 0
0 16
0 -16
18 0
-18 0
0 20
0 -20
22 0
-22 0
0 24
0 -24
26 0
-26 0
0 28
0 -28
30 0
-30 0
0 32
0 -32
10000000 10000
-10000000 10000
0 36
0 -36
102
1 3
1 4
2 3
2 4
3 4
1 5
2 6
3 5
3 6
4 5
4 6
3 7
4 8
5 7
5 8
6 7
6 8
5 9
6 10
7 9
7...

result:

ok OK, Accepted.

Test #37:

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

input:

37

output:

No

result:

ok OK, Accepted.

Test #38:

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

input:

38

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
14 0
-14 0
0 16
0 -16
18 0
-18 0
0 20
0 -20
22 0
-22 0
0 24
0 -24
26 0
-26 0
0 28
0 -28
30 0
-30 0
0 32
0 -32
34 0
-34 0
10000 10000000
10000 -10000000
38 0
-38 0
108
1 3
1 4
2 3
2 4
3 4
1 5
2 6
3 5
3 6
4 5
4 6
3 7
4 8
5 7
5 8
6 7
6 8
5 9...

result:

ok OK, Accepted.

Test #39:

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

input:

39

output:

No

result:

ok OK, Accepted.

Test #40:

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

input:

40

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
14 0
-14 0
0 16
0 -16
18 0
-18 0
0 20
0 -20
22 0
-22 0
0 24
0 -24
26 0
-26 0
0 28
0 -28
30 0
-30 0
0 32
0 -32
34 0
-34 0
0 36
0 -36
10000000 10000
-10000000 10000
0 40
0 -40
114
1 3
1 4
2 3
2 4
3 4
1 5
2 6
3 5
3 6
4 5
4 6
3 7
4 8
5 7
5 8
...

result:

ok OK, Accepted.

Test #41:

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

input:

41

output:

No

result:

ok OK, Accepted.

Test #42:

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

input:

42

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
14 0
-14 0
0 16
0 -16
18 0
-18 0
0 20
0 -20
22 0
-22 0
0 24
0 -24
26 0
-26 0
0 28
0 -28
30 0
-30 0
0 32
0 -32
34 0
-34 0
0 36
0 -36
38 0
-38 0
10000 10000000
10000 -10000000
42 0
-42 0
120
1 3
1 4
2 3
2 4
3 4
1 5
2 6
3 5
3 6
4 5
4 6
3 7
4...

result:

ok OK, Accepted.

Test #43:

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

input:

43

output:

No

result:

ok OK, Accepted.

Test #44:

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

input:

44

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
14 0
-14 0
0 16
0 -16
18 0
-18 0
0 20
0 -20
22 0
-22 0
0 24
0 -24
26 0
-26 0
0 28
0 -28
30 0
-30 0
0 32
0 -32
34 0
-34 0
0 36
0 -36
38 0
-38 0
0 40
0 -40
10000000 10000
-10000000 10000
0 44
0 -44
126
1 3
1 4
2 3
2 4
3 4
1 5
2 6
3 5
3 6
4 ...

result:

ok OK, Accepted.

Test #45:

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

input:

45

output:

No

result:

ok OK, Accepted.

Test #46:

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

input:

46

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
14 0
-14 0
0 16
0 -16
18 0
-18 0
0 20
0 -20
22 0
-22 0
0 24
0 -24
26 0
-26 0
0 28
0 -28
30 0
-30 0
0 32
0 -32
34 0
-34 0
0 36
0 -36
38 0
-38 0
0 40
0 -40
42 0
-42 0
10000 10000000
10000 -10000000
46 0
-46 0
132
1 3
1 4
2 3
2 4
3 4
1 5
2 6...

result:

ok OK, Accepted.

Test #47:

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

input:

47

output:

No

result:

ok OK, Accepted.

Test #48:

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

input:

48

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
14 0
-14 0
0 16
0 -16
18 0
-18 0
0 20
0 -20
22 0
-22 0
0 24
0 -24
26 0
-26 0
0 28
0 -28
30 0
-30 0
0 32
0 -32
34 0
-34 0
0 36
0 -36
38 0
-38 0
0 40
0 -40
42 0
-42 0
0 44
0 -44
10000000 10000
-10000000 10000
0 48
0 -48
138
1 3
1 4
2 3
2 4
...

result:

ok OK, Accepted.

Test #49:

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

input:

49

output:

No

result:

ok OK, Accepted.

Test #50:

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

input:

50

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
14 0
-14 0
0 16
0 -16
18 0
-18 0
0 20
0 -20
22 0
-22 0
0 24
0 -24
26 0
-26 0
0 28
0 -28
30 0
-30 0
0 32
0 -32
34 0
-34 0
0 36
0 -36
38 0
-38 0
0 40
0 -40
42 0
-42 0
0 44
0 -44
46 0
-46 0
10000 10000000
10000 -10000000
50 0
-50 0
144
1 3
1...

result:

ok OK, Accepted.

Test #51:

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

input:

51

output:

No

result:

ok OK, Accepted.

Test #52:

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

input:

52

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
14 0
-14 0
0 16
0 -16
18 0
-18 0
0 20
0 -20
22 0
-22 0
0 24
0 -24
26 0
-26 0
0 28
0 -28
30 0
-30 0
0 32
0 -32
34 0
-34 0
0 36
0 -36
38 0
-38 0
0 40
0 -40
42 0
-42 0
0 44
0 -44
46 0
-46 0
0 48
0 -48
10000000 10000
-10000000 10000
0 52
0 -5...

result:

ok OK, Accepted.

Test #53:

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

input:

53

output:

No

result:

ok OK, Accepted.

Test #54:

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

input:

54

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
14 0
-14 0
0 16
0 -16
18 0
-18 0
0 20
0 -20
22 0
-22 0
0 24
0 -24
26 0
-26 0
0 28
0 -28
30 0
-30 0
0 32
0 -32
34 0
-34 0
0 36
0 -36
38 0
-38 0
0 40
0 -40
42 0
-42 0
0 44
0 -44
46 0
-46 0
0 48
0 -48
50 0
-50 0
10000 10000000
10000 -1000000...

result:

ok OK, Accepted.

Test #55:

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

input:

55

output:

No

result:

ok OK, Accepted.

Test #56:

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

input:

56

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
14 0
-14 0
0 16
0 -16
18 0
-18 0
0 20
0 -20
22 0
-22 0
0 24
0 -24
26 0
-26 0
0 28
0 -28
30 0
-30 0
0 32
0 -32
34 0
-34 0
0 36
0 -36
38 0
-38 0
0 40
0 -40
42 0
-42 0
0 44
0 -44
46 0
-46 0
0 48
0 -48
50 0
-50 0
0 52
0 -52
10000000 10000
-10...

result:

ok OK, Accepted.

Test #57:

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

input:

57

output:

No

result:

ok OK, Accepted.

Test #58:

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

input:

58

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
14 0
-14 0
0 16
0 -16
18 0
-18 0
0 20
0 -20
22 0
-22 0
0 24
0 -24
26 0
-26 0
0 28
0 -28
30 0
-30 0
0 32
0 -32
34 0
-34 0
0 36
0 -36
38 0
-38 0
0 40
0 -40
42 0
-42 0
0 44
0 -44
46 0
-46 0
0 48
0 -48
50 0
-50 0
0 52
0 -52
54 0
-54 0
10000 1...

result:

ok OK, Accepted.

Test #59:

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

input:

59

output:

No

result:

ok OK, Accepted.

Test #60:

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

input:

60

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
14 0
-14 0
0 16
0 -16
18 0
-18 0
0 20
0 -20
22 0
-22 0
0 24
0 -24
26 0
-26 0
0 28
0 -28
30 0
-30 0
0 32
0 -32
34 0
-34 0
0 36
0 -36
38 0
-38 0
0 40
0 -40
42 0
-42 0
0 44
0 -44
46 0
-46 0
0 48
0 -48
50 0
-50 0
0 52
0 -52
54 0
-54 0
0 56
0 ...

result:

ok OK, Accepted.

Test #61:

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

input:

61

output:

No

result:

ok OK, Accepted.

Test #62:

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

input:

62

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
14 0
-14 0
0 16
0 -16
18 0
-18 0
0 20
0 -20
22 0
-22 0
0 24
0 -24
26 0
-26 0
0 28
0 -28
30 0
-30 0
0 32
0 -32
34 0
-34 0
0 36
0 -36
38 0
-38 0
0 40
0 -40
42 0
-42 0
0 44
0 -44
46 0
-46 0
0 48
0 -48
50 0
-50 0
0 52
0 -52
54 0
-54 0
0 56
0 ...

result:

ok OK, Accepted.

Test #63:

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

input:

63

output:

No

result:

ok OK, Accepted.

Test #64:

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

input:

64

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
14 0
-14 0
0 16
0 -16
18 0
-18 0
0 20
0 -20
22 0
-22 0
0 24
0 -24
26 0
-26 0
0 28
0 -28
30 0
-30 0
0 32
0 -32
34 0
-34 0
0 36
0 -36
38 0
-38 0
0 40
0 -40
42 0
-42 0
0 44
0 -44
46 0
-46 0
0 48
0 -48
50 0
-50 0
0 52
0 -52
54 0
-54 0
0 56
0 ...

result:

ok OK, Accepted.

Test #65:

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

input:

65

output:

No

result:

ok OK, Accepted.

Test #66:

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

input:

66

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
14 0
-14 0
0 16
0 -16
18 0
-18 0
0 20
0 -20
22 0
-22 0
0 24
0 -24
26 0
-26 0
0 28
0 -28
30 0
-30 0
0 32
0 -32
34 0
-34 0
0 36
0 -36
38 0
-38 0
0 40
0 -40
42 0
-42 0
0 44
0 -44
46 0
-46 0
0 48
0 -48
50 0
-50 0
0 52
0 -52
54 0
-54 0
0 56
0 ...

result:

ok OK, Accepted.

Test #67:

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

input:

67

output:

No

result:

ok OK, Accepted.

Test #68:

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

input:

68

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
14 0
-14 0
0 16
0 -16
18 0
-18 0
0 20
0 -20
22 0
-22 0
0 24
0 -24
26 0
-26 0
0 28
0 -28
30 0
-30 0
0 32
0 -32
34 0
-34 0
0 36
0 -36
38 0
-38 0
0 40
0 -40
42 0
-42 0
0 44
0 -44
46 0
-46 0
0 48
0 -48
50 0
-50 0
0 52
0 -52
54 0
-54 0
0 56
0 ...

result:

ok OK, Accepted.

Test #69:

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

input:

69

output:

No

result:

ok OK, Accepted.

Test #70:

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

input:

70

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
14 0
-14 0
0 16
0 -16
18 0
-18 0
0 20
0 -20
22 0
-22 0
0 24
0 -24
26 0
-26 0
0 28
0 -28
30 0
-30 0
0 32
0 -32
34 0
-34 0
0 36
0 -36
38 0
-38 0
0 40
0 -40
42 0
-42 0
0 44
0 -44
46 0
-46 0
0 48
0 -48
50 0
-50 0
0 52
0 -52
54 0
-54 0
0 56
0 ...

result:

ok OK, Accepted.

Test #71:

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

input:

71

output:

No

result:

ok OK, Accepted.

Test #72:

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

input:

72

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
14 0
-14 0
0 16
0 -16
18 0
-18 0
0 20
0 -20
22 0
-22 0
0 24
0 -24
26 0
-26 0
0 28
0 -28
30 0
-30 0
0 32
0 -32
34 0
-34 0
0 36
0 -36
38 0
-38 0
0 40
0 -40
42 0
-42 0
0 44
0 -44
46 0
-46 0
0 48
0 -48
50 0
-50 0
0 52
0 -52
54 0
-54 0
0 56
0 ...

result:

ok OK, Accepted.

Test #73:

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

input:

73

output:

No

result:

ok OK, Accepted.

Test #74:

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

input:

74

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
14 0
-14 0
0 16
0 -16
18 0
-18 0
0 20
0 -20
22 0
-22 0
0 24
0 -24
26 0
-26 0
0 28
0 -28
30 0
-30 0
0 32
0 -32
34 0
-34 0
0 36
0 -36
38 0
-38 0
0 40
0 -40
42 0
-42 0
0 44
0 -44
46 0
-46 0
0 48
0 -48
50 0
-50 0
0 52
0 -52
54 0
-54 0
0 56
0 ...

result:

ok OK, Accepted.

Test #75:

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

input:

75

output:

No

result:

ok OK, Accepted.

Test #76:

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

input:

76

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
14 0
-14 0
0 16
0 -16
18 0
-18 0
0 20
0 -20
22 0
-22 0
0 24
0 -24
26 0
-26 0
0 28
0 -28
30 0
-30 0
0 32
0 -32
34 0
-34 0
0 36
0 -36
38 0
-38 0
0 40
0 -40
42 0
-42 0
0 44
0 -44
46 0
-46 0
0 48
0 -48
50 0
-50 0
0 52
0 -52
54 0
-54 0
0 56
0 ...

result:

ok OK, Accepted.

Test #77:

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

input:

77

output:

No

result:

ok OK, Accepted.

Test #78:

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

input:

78

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
14 0
-14 0
0 16
0 -16
18 0
-18 0
0 20
0 -20
22 0
-22 0
0 24
0 -24
26 0
-26 0
0 28
0 -28
30 0
-30 0
0 32
0 -32
34 0
-34 0
0 36
0 -36
38 0
-38 0
0 40
0 -40
42 0
-42 0
0 44
0 -44
46 0
-46 0
0 48
0 -48
50 0
-50 0
0 52
0 -52
54 0
-54 0
0 56
0 ...

result:

ok OK, Accepted.

Test #79:

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

input:

79

output:

No

result:

ok OK, Accepted.

Test #80:

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

input:

80

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
14 0
-14 0
0 16
0 -16
18 0
-18 0
0 20
0 -20
22 0
-22 0
0 24
0 -24
26 0
-26 0
0 28
0 -28
30 0
-30 0
0 32
0 -32
34 0
-34 0
0 36
0 -36
38 0
-38 0
0 40
0 -40
42 0
-42 0
0 44
0 -44
46 0
-46 0
0 48
0 -48
50 0
-50 0
0 52
0 -52
54 0
-54 0
0 56
0 ...

result:

ok OK, Accepted.

Test #81:

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

input:

81

output:

No

result:

ok OK, Accepted.

Test #82:

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

input:

82

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
14 0
-14 0
0 16
0 -16
18 0
-18 0
0 20
0 -20
22 0
-22 0
0 24
0 -24
26 0
-26 0
0 28
0 -28
30 0
-30 0
0 32
0 -32
34 0
-34 0
0 36
0 -36
38 0
-38 0
0 40
0 -40
42 0
-42 0
0 44
0 -44
46 0
-46 0
0 48
0 -48
50 0
-50 0
0 52
0 -52
54 0
-54 0
0 56
0 ...

result:

ok OK, Accepted.

Test #83:

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

input:

83

output:

No

result:

ok OK, Accepted.

Test #84:

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

input:

84

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
14 0
-14 0
0 16
0 -16
18 0
-18 0
0 20
0 -20
22 0
-22 0
0 24
0 -24
26 0
-26 0
0 28
0 -28
30 0
-30 0
0 32
0 -32
34 0
-34 0
0 36
0 -36
38 0
-38 0
0 40
0 -40
42 0
-42 0
0 44
0 -44
46 0
-46 0
0 48
0 -48
50 0
-50 0
0 52
0 -52
54 0
-54 0
0 56
0 ...

result:

ok OK, Accepted.

Test #85:

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

input:

85

output:

No

result:

ok OK, Accepted.

Test #86:

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

input:

86

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
14 0
-14 0
0 16
0 -16
18 0
-18 0
0 20
0 -20
22 0
-22 0
0 24
0 -24
26 0
-26 0
0 28
0 -28
30 0
-30 0
0 32
0 -32
34 0
-34 0
0 36
0 -36
38 0
-38 0
0 40
0 -40
42 0
-42 0
0 44
0 -44
46 0
-46 0
0 48
0 -48
50 0
-50 0
0 52
0 -52
54 0
-54 0
0 56
0 ...

result:

ok OK, Accepted.

Test #87:

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

input:

87

output:

No

result:

ok OK, Accepted.

Test #88:

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

input:

88

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
14 0
-14 0
0 16
0 -16
18 0
-18 0
0 20
0 -20
22 0
-22 0
0 24
0 -24
26 0
-26 0
0 28
0 -28
30 0
-30 0
0 32
0 -32
34 0
-34 0
0 36
0 -36
38 0
-38 0
0 40
0 -40
42 0
-42 0
0 44
0 -44
46 0
-46 0
0 48
0 -48
50 0
-50 0
0 52
0 -52
54 0
-54 0
0 56
0 ...

result:

ok OK, Accepted.

Test #89:

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

input:

89

output:

No

result:

ok OK, Accepted.

Test #90:

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

input:

90

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
14 0
-14 0
0 16
0 -16
18 0
-18 0
0 20
0 -20
22 0
-22 0
0 24
0 -24
26 0
-26 0
0 28
0 -28
30 0
-30 0
0 32
0 -32
34 0
-34 0
0 36
0 -36
38 0
-38 0
0 40
0 -40
42 0
-42 0
0 44
0 -44
46 0
-46 0
0 48
0 -48
50 0
-50 0
0 52
0 -52
54 0
-54 0
0 56
0 ...

result:

ok OK, Accepted.

Test #91:

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

input:

91

output:

No

result:

ok OK, Accepted.

Test #92:

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

input:

92

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
14 0
-14 0
0 16
0 -16
18 0
-18 0
0 20
0 -20
22 0
-22 0
0 24
0 -24
26 0
-26 0
0 28
0 -28
30 0
-30 0
0 32
0 -32
34 0
-34 0
0 36
0 -36
38 0
-38 0
0 40
0 -40
42 0
-42 0
0 44
0 -44
46 0
-46 0
0 48
0 -48
50 0
-50 0
0 52
0 -52
54 0
-54 0
0 56
0 ...

result:

ok OK, Accepted.

Test #93:

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

input:

93

output:

No

result:

ok OK, Accepted.

Test #94:

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

input:

94

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
14 0
-14 0
0 16
0 -16
18 0
-18 0
0 20
0 -20
22 0
-22 0
0 24
0 -24
26 0
-26 0
0 28
0 -28
30 0
-30 0
0 32
0 -32
34 0
-34 0
0 36
0 -36
38 0
-38 0
0 40
0 -40
42 0
-42 0
0 44
0 -44
46 0
-46 0
0 48
0 -48
50 0
-50 0
0 52
0 -52
54 0
-54 0
0 56
0 ...

result:

ok OK, Accepted.

Test #95:

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

input:

95

output:

No

result:

ok OK, Accepted.

Test #96:

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

input:

96

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
14 0
-14 0
0 16
0 -16
18 0
-18 0
0 20
0 -20
22 0
-22 0
0 24
0 -24
26 0
-26 0
0 28
0 -28
30 0
-30 0
0 32
0 -32
34 0
-34 0
0 36
0 -36
38 0
-38 0
0 40
0 -40
42 0
-42 0
0 44
0 -44
46 0
-46 0
0 48
0 -48
50 0
-50 0
0 52
0 -52
54 0
-54 0
0 56
0 ...

result:

ok OK, Accepted.

Test #97:

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

input:

97

output:

No

result:

ok OK, Accepted.

Test #98:

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

input:

98

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
14 0
-14 0
0 16
0 -16
18 0
-18 0
0 20
0 -20
22 0
-22 0
0 24
0 -24
26 0
-26 0
0 28
0 -28
30 0
-30 0
0 32
0 -32
34 0
-34 0
0 36
0 -36
38 0
-38 0
0 40
0 -40
42 0
-42 0
0 44
0 -44
46 0
-46 0
0 48
0 -48
50 0
-50 0
0 52
0 -52
54 0
-54 0
0 56
0 ...

result:

ok OK, Accepted.

Test #99:

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

input:

99

output:

No

result:

ok OK, Accepted.

Test #100:

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

input:

100

output:

Yes
1 0
-1 0
0 1
0 -1
6 0
-6 0
0 8
0 -8
10 0
-10 0
0 12
0 -12
14 0
-14 0
0 16
0 -16
18 0
-18 0
0 20
0 -20
22 0
-22 0
0 24
0 -24
26 0
-26 0
0 28
0 -28
30 0
-30 0
0 32
0 -32
34 0
-34 0
0 36
0 -36
38 0
-38 0
0 40
0 -40
42 0
-42 0
0 44
0 -44
46 0
-46 0
0 48
0 -48
50 0
-50 0
0 52
0 -52
54 0
-54 0
0 56
0 ...

result:

ok OK, Accepted.

Extra Test:

score: 0
Extra Test Passed