結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,776 KB
testcase_01 AC 50 ms
60,400 KB
testcase_02 AC 48 ms
59,932 KB
testcase_03 AC 44 ms
60,592 KB
testcase_04 AC 44 ms
60,584 KB
testcase_05 AC 46 ms
60,368 KB
testcase_06 AC 45 ms
60,472 KB
testcase_07 AC 59 ms
60,344 KB
testcase_08 AC 44 ms
59,928 KB
testcase_09 AC 47 ms
60,004 KB
testcase_10 AC 46 ms
61,272 KB
testcase_11 AC 47 ms
60,304 KB
testcase_12 AC 45 ms
60,148 KB
testcase_13 AC 46 ms
60,852 KB
testcase_14 AC 46 ms
61,332 KB
testcase_15 AC 48 ms
60,492 KB
testcase_16 AC 48 ms
60,044 KB
testcase_17 AC 47 ms
59,860 KB
testcase_18 AC 64 ms
69,644 KB
testcase_19 AC 62 ms
71,384 KB
testcase_20 AC 66 ms
73,676 KB
testcase_21 AC 71 ms
76,792 KB
testcase_22 AC 47 ms
59,748 KB
testcase_23 AC 76 ms
77,264 KB
testcase_24 AC 108 ms
84,660 KB
testcase_25 AC 69 ms
76,628 KB
testcase_26 AC 52 ms
63,540 KB
testcase_27 AC 57 ms
66,260 KB
testcase_28 AC 45 ms
60,968 KB
testcase_29 AC 47 ms
60,276 KB
testcase_30 AC 46 ms
61,052 KB
testcase_31 AC 45 ms
61,052 KB
testcase_32 AC 56 ms
60,004 KB
testcase_33 WA -
testcase_34 AC 161 ms
108,548 KB
testcase_35 AC 155 ms
108,428 KB
testcase_36 WA -
testcase_37 AC 165 ms
108,636 KB
testcase_38 AC 147 ms
108,456 KB
testcase_39 AC 157 ms
108,580 KB
testcase_40 AC 152 ms
108,644 KB
testcase_41 AC 157 ms
108,520 KB
testcase_42 AC 153 ms
108,424 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)
    
print(cur-1)
for e in E:
    print(*e)
print(" ".join(C))
0