結果

問題 No.2929 Miracle Branch
ユーザー noriaokinoriaoki
提出日時 2024-10-12 16:47:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 494 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 98,176 KB
最終ジャッジ日時 2024-10-12 16:48:08
合計ジャッジ時間 9,508 ms
ジャッジサーバーID
(参考情報)
judge5 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
57,856 KB
testcase_01 AC 38 ms
57,728 KB
testcase_02 AC 43 ms
57,600 KB
testcase_03 AC 40 ms
58,624 KB
testcase_04 AC 39 ms
58,568 KB
testcase_05 AC 40 ms
58,368 KB
testcase_06 AC 48 ms
57,984 KB
testcase_07 AC 39 ms
57,984 KB
testcase_08 AC 42 ms
58,496 KB
testcase_09 AC 41 ms
57,984 KB
testcase_10 AC 41 ms
58,624 KB
testcase_11 AC 39 ms
57,856 KB
testcase_12 AC 37 ms
57,856 KB
testcase_13 AC 41 ms
58,240 KB
testcase_14 AC 39 ms
57,984 KB
testcase_15 AC 38 ms
58,112 KB
testcase_16 AC 41 ms
58,112 KB
testcase_17 AC 46 ms
58,368 KB
testcase_18 AC 56 ms
69,120 KB
testcase_19 AC 57 ms
69,888 KB
testcase_20 AC 57 ms
73,088 KB
testcase_21 AC 61 ms
76,032 KB
testcase_22 AC 41 ms
58,240 KB
testcase_23 AC 66 ms
75,904 KB
testcase_24 AC 87 ms
82,424 KB
testcase_25 AC 81 ms
76,756 KB
testcase_26 AC 50 ms
63,104 KB
testcase_27 AC 48 ms
65,408 KB
testcase_28 AC 36 ms
57,728 KB
testcase_29 AC 35 ms
57,856 KB
testcase_30 AC 37 ms
57,600 KB
testcase_31 AC 36 ms
57,600 KB
testcase_32 AC 38 ms
57,856 KB
testcase_33 AC 38 ms
58,240 KB
testcase_34 AC 134 ms
97,792 KB
testcase_35 AC 135 ms
97,996 KB
testcase_36 AC 38 ms
58,112 KB
testcase_37 AC 138 ms
97,664 KB
testcase_38 AC 156 ms
98,048 KB
testcase_39 AC 155 ms
98,176 KB
testcase_40 AC 147 ms
97,792 KB
testcase_41 AC 137 ms
98,012 KB
testcase_42 AC 153 ms
97,664 KB
testcase_43 AC 135 ms
98,048 KB
testcase_44 AC 148 ms
97,984 KB
testcase_45 AC 41 ms
57,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x = int(input())
d = list()
for i in range(3, 2*10**5+1):
    while x % i == 0:
        x //= i
        d.append(i)
if x%2 == 0:
    x //= 2
    d.append(2)

if x != 1 or len(d)==0:
    d.append(x)

ans = 0
for i in range(len(d)):
    ans += d[i] + 1

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

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

id = len(d) + 1
for i in range(len(d)):
    for j in range(d[i]):
        print(i+1, id)
        id += 1

print(*("b"*len(d) + "g"*(ans-len(d))))
0