結果

問題 No.2929 Miracle Branch
ユーザー mkawa2mkawa2
提出日時 2024-10-17 22:05:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,213 bytes
コンパイル時間 439 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 85,484 KB
最終ジャッジ日時 2024-10-17 22:05:16
合計ジャッジ時間 10,899 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 36 ms
52,832 KB
testcase_02 AC 39 ms
59,772 KB
testcase_03 AC 38 ms
53,356 KB
testcase_04 AC 38 ms
53,364 KB
testcase_05 AC 36 ms
53,496 KB
testcase_06 AC 37 ms
53,080 KB
testcase_07 AC 37 ms
53,924 KB
testcase_08 AC 37 ms
52,820 KB
testcase_09 AC 38 ms
54,744 KB
testcase_10 AC 38 ms
54,212 KB
testcase_11 AC 37 ms
53,840 KB
testcase_12 AC 37 ms
53,164 KB
testcase_13 AC 38 ms
52,952 KB
testcase_14 AC 37 ms
53,480 KB
testcase_15 AC 38 ms
53,924 KB
testcase_16 AC 38 ms
53,776 KB
testcase_17 AC 38 ms
54,300 KB
testcase_18 AC 58 ms
69,308 KB
testcase_19 AC 58 ms
70,128 KB
testcase_20 AC 60 ms
72,800 KB
testcase_21 AC 66 ms
75,872 KB
testcase_22 AC 38 ms
54,236 KB
testcase_23 AC 68 ms
76,516 KB
testcase_24 AC 84 ms
78,788 KB
testcase_25 AC 64 ms
76,448 KB
testcase_26 AC 48 ms
64,344 KB
testcase_27 AC 53 ms
65,992 KB
testcase_28 AC 41 ms
58,576 KB
testcase_29 AC 41 ms
58,228 KB
testcase_30 AC 41 ms
58,368 KB
testcase_31 AC 41 ms
58,524 KB
testcase_32 AC 42 ms
58,700 KB
testcase_33 AC 40 ms
59,836 KB
testcase_34 AC 156 ms
84,920 KB
testcase_35 AC 156 ms
84,984 KB
testcase_36 AC 40 ms
57,884 KB
testcase_37 AC 157 ms
84,916 KB
testcase_38 AC 157 ms
85,120 KB
testcase_39 AC 157 ms
85,056 KB
testcase_40 AC 154 ms
85,484 KB
testcase_41 AC 155 ms
85,476 KB
testcase_42 AC 159 ms
85,388 KB
testcase_43 AC 139 ms
84,776 KB
testcase_44 AC 141 ms
84,992 KB
testcase_45 AC 36 ms
54,120 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()

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