結果

問題 No.2929 Miracle Branch
ユーザー mymelochanmymelochan
提出日時 2024-06-12 22:26:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 1,260 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,480 KB
実行使用メモリ 109,012 KB
最終ジャッジ日時 2024-08-25 23:41:53
合計ジャッジ時間 10,847 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,672 KB
testcase_01 AC 47 ms
59,860 KB
testcase_02 AC 44 ms
60,056 KB
testcase_03 AC 47 ms
61,368 KB
testcase_04 AC 46 ms
61,124 KB
testcase_05 AC 47 ms
60,232 KB
testcase_06 AC 45 ms
61,468 KB
testcase_07 AC 51 ms
60,664 KB
testcase_08 AC 47 ms
61,216 KB
testcase_09 AC 50 ms
61,660 KB
testcase_10 AC 46 ms
60,900 KB
testcase_11 AC 46 ms
60,548 KB
testcase_12 AC 45 ms
60,072 KB
testcase_13 AC 46 ms
59,992 KB
testcase_14 AC 46 ms
60,496 KB
testcase_15 AC 47 ms
60,920 KB
testcase_16 AC 48 ms
60,364 KB
testcase_17 AC 46 ms
60,464 KB
testcase_18 AC 61 ms
69,648 KB
testcase_19 AC 62 ms
71,408 KB
testcase_20 AC 65 ms
73,436 KB
testcase_21 AC 68 ms
76,936 KB
testcase_22 AC 47 ms
60,800 KB
testcase_23 AC 74 ms
77,100 KB
testcase_24 AC 94 ms
84,792 KB
testcase_25 AC 71 ms
76,824 KB
testcase_26 AC 52 ms
64,360 KB
testcase_27 AC 57 ms
66,076 KB
testcase_28 AC 46 ms
59,824 KB
testcase_29 AC 47 ms
60,132 KB
testcase_30 AC 49 ms
59,572 KB
testcase_31 AC 44 ms
59,884 KB
testcase_32 AC 44 ms
59,460 KB
testcase_33 AC 79 ms
96,128 KB
testcase_34 AC 160 ms
108,308 KB
testcase_35 AC 158 ms
108,392 KB
testcase_36 AC 76 ms
96,376 KB
testcase_37 AC 160 ms
108,512 KB
testcase_38 AC 159 ms
108,640 KB
testcase_39 AC 161 ms
108,652 KB
testcase_40 AC 158 ms
108,652 KB
testcase_41 AC 162 ms
108,816 KB
testcase_42 AC 159 ms
108,616 KB
testcase_43 AC 159 ms
108,580 KB
testcase_44 AC 160 ms
109,012 KB
testcase_45 AC 78 ms
94,632 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

if cur-1 > 2*10**5:
    print(-1)
    exit()

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