結果

問題 No.2929 Miracle Branch
ユーザー prd_xxxprd_xxx
提出日時 2024-10-12 16:59:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 491 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 85,120 KB
最終ジャッジ日時 2024-10-12 17:02:32
合計ジャッジ時間 74,259 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,584 KB
testcase_01 AC 1,403 ms
57,508 KB
testcase_02 AC 1,291 ms
57,472 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 1,387 ms
68,480 KB
testcase_19 AC 1,411 ms
69,632 KB
testcase_20 AC 1,420 ms
72,320 KB
testcase_21 AC 1,433 ms
76,112 KB
testcase_22 WA -
testcase_23 AC 1,419 ms
76,500 KB
testcase_24 AC 1,447 ms
78,808 KB
testcase_25 WA -
testcase_26 AC 1,363 ms
62,848 KB
testcase_27 AC 1,374 ms
65,920 KB
testcase_28 AC 1,357 ms
57,344 KB
testcase_29 AC 1,389 ms
57,472 KB
testcase_30 AC 1,403 ms
57,216 KB
testcase_31 AC 1,387 ms
57,728 KB
testcase_32 AC 1,406 ms
57,868 KB
testcase_33 AC 1,635 ms
58,240 KB
testcase_34 AC 1,773 ms
84,864 KB
testcase_35 AC 1,789 ms
85,120 KB
testcase_36 AC 1,603 ms
57,856 KB
testcase_37 AC 1,758 ms
84,864 KB
testcase_38 AC 1,757 ms
85,120 KB
testcase_39 AC 1,844 ms
84,864 KB
testcase_40 AC 1,751 ms
84,992 KB
testcase_41 AC 1,801 ms
84,992 KB
testcase_42 AC 1,757 ms
84,864 KB
testcase_43 AC 1,487 ms
84,780 KB
testcase_44 AC 1,482 ms
85,120 KB
testcase_45 AC 1,381 ms
57,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X = int(input())

if X in (1,4):
    arr = [X]
else:
    arr = []
    for n in range(2,10**8):
        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