結果

問題 No.2929 Miracle Branch
ユーザー mymelochanmymelochan
提出日時 2024-06-12 22:24:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,214 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 108,768 KB
最終ジャッジ日時 2024-06-12 22:24:38
合計ジャッジ時間 10,393 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,848 KB
testcase_01 AC 46 ms
59,596 KB
testcase_02 AC 45 ms
61,084 KB
testcase_03 AC 47 ms
60,604 KB
testcase_04 AC 47 ms
61,332 KB
testcase_05 AC 47 ms
59,796 KB
testcase_06 AC 47 ms
61,344 KB
testcase_07 AC 49 ms
59,928 KB
testcase_08 AC 47 ms
60,284 KB
testcase_09 AC 48 ms
62,028 KB
testcase_10 AC 46 ms
60,912 KB
testcase_11 AC 54 ms
60,100 KB
testcase_12 AC 46 ms
60,564 KB
testcase_13 AC 45 ms
60,420 KB
testcase_14 AC 45 ms
60,864 KB
testcase_15 AC 46 ms
60,860 KB
testcase_16 AC 46 ms
60,360 KB
testcase_17 AC 47 ms
59,812 KB
testcase_18 AC 63 ms
69,112 KB
testcase_19 AC 63 ms
70,728 KB
testcase_20 AC 65 ms
73,276 KB
testcase_21 AC 70 ms
76,888 KB
testcase_22 AC 47 ms
60,272 KB
testcase_23 AC 72 ms
76,776 KB
testcase_24 AC 92 ms
84,632 KB
testcase_25 AC 69 ms
76,364 KB
testcase_26 AC 52 ms
64,516 KB
testcase_27 AC 59 ms
65,268 KB
testcase_28 AC 46 ms
60,104 KB
testcase_29 AC 45 ms
59,592 KB
testcase_30 AC 47 ms
59,864 KB
testcase_31 AC 46 ms
59,448 KB
testcase_32 AC 45 ms
59,512 KB
testcase_33 WA -
testcase_34 AC 187 ms
108,768 KB
testcase_35 AC 159 ms
108,380 KB
testcase_36 WA -
testcase_37 AC 150 ms
108,580 KB
testcase_38 AC 155 ms
108,088 KB
testcase_39 AC 162 ms
108,280 KB
testcase_40 AC 154 ms
108,736 KB
testcase_41 AC 156 ms
108,432 KB
testcase_42 AC 158 ms
108,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

X = int(input())

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

d = defaultdict(int)

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

if X > 1:
    print(-1)
    exit()

last = -1
cur = 1
E = []
C = []
for k, v in d.items():
    if k == 2:
        for _ in range(v//2):
            C.append("b")
            if last != -1:
                E.append((last,cur))
            for i in range(1, 4+1):
                E.append((cur, cur+i))
                C.append("g")
            last = cur
            cur += 4+1
        if v % 2 == 1:
            C.append("b")
            if last != -1:
                E.append((last,cur))
            for i in range(1, 2+1):
                E.append((cur, cur+i))
                C.append("g")
            last = cur
            cur += 2+1
    else:
        for _ in range(v):
            C.append("b")
            if last != -1:
                E.append((last,cur))
            for i in range(1, k+1):
                E.append((cur, cur+i))
                C.append("g")
            last = cur
            cur += k+1

print(cur-1)
for e in E:
    print(*e)
print(" ".join(C))
0