結果

問題 No.2929 Miracle Branch
ユーザー mkawa2mkawa2
提出日時 2024-10-17 22:05:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 1,285 bytes
コンパイル時間 500 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 85,236 KB
最終ジャッジ日時 2024-10-17 22:06:10
合計ジャッジ時間 9,694 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
53,280 KB
testcase_01 AC 32 ms
53,496 KB
testcase_02 AC 35 ms
58,768 KB
testcase_03 AC 37 ms
53,096 KB
testcase_04 AC 36 ms
53,376 KB
testcase_05 AC 36 ms
53,476 KB
testcase_06 AC 34 ms
53,728 KB
testcase_07 AC 34 ms
53,728 KB
testcase_08 AC 33 ms
53,292 KB
testcase_09 AC 33 ms
54,500 KB
testcase_10 AC 34 ms
53,680 KB
testcase_11 AC 37 ms
54,004 KB
testcase_12 AC 35 ms
53,108 KB
testcase_13 AC 36 ms
53,040 KB
testcase_14 AC 38 ms
53,248 KB
testcase_15 AC 34 ms
53,972 KB
testcase_16 AC 34 ms
54,172 KB
testcase_17 AC 33 ms
53,540 KB
testcase_18 AC 53 ms
69,048 KB
testcase_19 AC 53 ms
70,612 KB
testcase_20 AC 53 ms
72,772 KB
testcase_21 AC 59 ms
75,892 KB
testcase_22 AC 34 ms
54,712 KB
testcase_23 AC 69 ms
76,152 KB
testcase_24 AC 75 ms
78,996 KB
testcase_25 AC 61 ms
76,144 KB
testcase_26 AC 45 ms
64,064 KB
testcase_27 AC 48 ms
66,840 KB
testcase_28 AC 37 ms
59,444 KB
testcase_29 AC 37 ms
58,556 KB
testcase_30 AC 36 ms
58,024 KB
testcase_31 AC 37 ms
58,424 KB
testcase_32 AC 35 ms
59,036 KB
testcase_33 AC 36 ms
58,180 KB
testcase_34 AC 134 ms
85,236 KB
testcase_35 AC 144 ms
84,856 KB
testcase_36 AC 35 ms
58,012 KB
testcase_37 AC 148 ms
85,136 KB
testcase_38 AC 143 ms
85,112 KB
testcase_39 AC 134 ms
85,120 KB
testcase_40 AC 135 ms
84,844 KB
testcase_41 AC 153 ms
84,984 KB
testcase_42 AC 132 ms
84,864 KB
testcase_43 AC 112 ms
85,012 KB
testcase_44 AC 115 ms
84,900 KB
testcase_45 AC 31 ms
52,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

# md = 10**9+7
# md = 998244353

lim=200000

x=II()

if x==1:
    print(2)
    print(1,2)
    print("b","g")
    exit()
    
t=(x&-x).bit_length()-1
x>>=t
dd=[4]*(t>>1)+[2]*(t&1)
for d in range(3,lim+1):
    if d*d>x:break
    while x%d==0:
        dd.append(d)
        x//=d
if x>1:dd.append(x)

n=sum(dd)+len(dd)
if n>lim:
    print(-1)
else:
    print(n)
    dn=len(dd)
    for u in range(1,dn):print(u,u+1)
    s=dn+1
    for u,d in enumerate(dd,1):
        for v in range(s,s+d):print(u,v)
        s+=d
    cc=["b"]*dn+["g"]*(n-dn)
    print(*cc)
0