結果

問題 No.2929 Miracle Branch
ユーザー rlangevinrlangevin
提出日時 2024-11-01 12:07:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 572 bytes
コンパイル時間 431 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 109,064 KB
最終ジャッジ日時 2024-11-01 12:07:13
合計ジャッジ時間 12,412 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,068 KB
testcase_01 AC 44 ms
59,100 KB
testcase_02 AC 43 ms
58,048 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 70 ms
70,144 KB
testcase_19 AC 68 ms
71,216 KB
testcase_20 AC 69 ms
74,516 KB
testcase_21 AC 76 ms
76,452 KB
testcase_22 WA -
testcase_23 AC 79 ms
76,992 KB
testcase_24 AC 135 ms
84,356 KB
testcase_25 WA -
testcase_26 AC 56 ms
63,936 KB
testcase_27 AC 61 ms
66,672 KB
testcase_28 AC 43 ms
59,020 KB
testcase_29 AC 44 ms
57,820 KB
testcase_30 AC 43 ms
57,636 KB
testcase_31 AC 44 ms
58,384 KB
testcase_32 AC 43 ms
59,528 KB
testcase_33 AC 74 ms
93,912 KB
testcase_34 AC 202 ms
108,560 KB
testcase_35 AC 203 ms
108,560 KB
testcase_36 AC 74 ms
93,656 KB
testcase_37 AC 203 ms
108,488 KB
testcase_38 AC 202 ms
108,436 KB
testcase_39 AC 231 ms
108,716 KB
testcase_40 AC 201 ms
108,580 KB
testcase_41 AC 201 ms
108,584 KB
testcase_42 AC 202 ms
108,392 KB
testcase_43 AC 177 ms
108,724 KB
testcase_44 AC 184 ms
109,064 KB
testcase_45 AC 73 ms
93,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X = int(input())
if X == 1:
    print(2)
    print(1, 2)
    print("b g")
    exit()

M = 2 * 10 ** 5
L = []
for i in range(2, M + 1):
    while X % i == 0:
        L.append(i)
        X //= i

if X != 1:
    print(-1)
    exit()

now = len(L)
GB = ["b"] * now
ans = []
for i in range(now - 1):
    ans.append((i + 1, i + 2))

now += 1
for i in range(len(L)):
    for j in range(L[i]):
        ans.append((i + 1, now))
        now += 1
        GB.append("g")
        
if len(GB) > M:
    print(-1)
    exit()
    
print(len(GB))
for a, b in ans:
    print(a, b)
print(*GB)
0