結果

問題 No.2929 Miracle Branch
ユーザー prd_xxxprd_xxx
提出日時 2024-10-12 15:55:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 492 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 85,264 KB
最終ジャッジ日時 2024-10-12 15:55:44
合計ジャッジ時間 10,770 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 47 ms
57,600 KB
testcase_02 AC 44 ms
57,856 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 64 ms
68,864 KB
testcase_19 AC 64 ms
69,504 KB
testcase_20 AC 64 ms
72,320 KB
testcase_21 AC 72 ms
76,032 KB
testcase_22 WA -
testcase_23 AC 74 ms
76,416 KB
testcase_24 AC 94 ms
78,664 KB
testcase_25 WA -
testcase_26 AC 55 ms
63,104 KB
testcase_27 AC 58 ms
65,920 KB
testcase_28 AC 43 ms
57,600 KB
testcase_29 AC 43 ms
57,600 KB
testcase_30 AC 44 ms
57,600 KB
testcase_31 AC 43 ms
57,600 KB
testcase_32 AC 43 ms
57,856 KB
testcase_33 AC 46 ms
58,112 KB
testcase_34 AC 166 ms
85,264 KB
testcase_35 AC 166 ms
84,892 KB
testcase_36 AC 48 ms
58,112 KB
testcase_37 AC 163 ms
85,188 KB
testcase_38 AC 167 ms
84,992 KB
testcase_39 AC 166 ms
85,120 KB
testcase_40 AC 166 ms
84,992 KB
testcase_41 AC 169 ms
84,940 KB
testcase_42 AC 165 ms
84,976 KB
testcase_43 AC 154 ms
84,608 KB
testcase_44 AC 153 ms
85,248 KB
testcase_45 AC 46 ms
57,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X = int(input())

if X in (1,4):
    arr = [X]
else:
    arr = []
    for n in range(2,200001):
        while X%n == 0:
            arr.append(n)
            X //= n

if not arr: exit(print(-1))

if sum(arr) + len(arr) > 200000:
    exit(print(-1))

K = sum(arr) + len(arr)
print(K)

for i in range(len(arr)-1):
    print(i+1, i+2)

n = len(arr) + 1
for i,a in enumerate(arr):
    for _ in range(a):
        print(i+1, n)
        n += 1
c = ['b'] * len(arr) + ['g'] * (K - len(arr))
print(*c)
0