結果

問題 No.2929 Miracle Branch
ユーザー FuyuruFuyuru
提出日時 2024-10-12 16:21:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 659 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 96,268 KB
最終ジャッジ日時 2024-10-12 16:21:24
合計ジャッジ時間 10,152 ms
ジャッジサーバーID
(参考情報)
judge / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,732 KB
testcase_01 AC 37 ms
58,016 KB
testcase_02 AC 39 ms
57,780 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 61 ms
70,896 KB
testcase_19 AC 61 ms
72,672 KB
testcase_20 AC 62 ms
73,792 KB
testcase_21 AC 64 ms
76,664 KB
testcase_22 WA -
testcase_23 AC 69 ms
76,984 KB
testcase_24 AC 88 ms
81,368 KB
testcase_25 WA -
testcase_26 AC 48 ms
64,644 KB
testcase_27 AC 53 ms
67,968 KB
testcase_28 AC 41 ms
58,196 KB
testcase_29 AC 40 ms
57,788 KB
testcase_30 AC 44 ms
59,304 KB
testcase_31 AC 38 ms
57,896 KB
testcase_32 AC 37 ms
58,236 KB
testcase_33 AC 39 ms
58,952 KB
testcase_34 AC 163 ms
95,960 KB
testcase_35 AC 160 ms
96,084 KB
testcase_36 AC 39 ms
59,408 KB
testcase_37 AC 155 ms
95,836 KB
testcase_38 AC 162 ms
95,804 KB
testcase_39 AC 163 ms
96,268 KB
testcase_40 AC 179 ms
96,132 KB
testcase_41 AC 160 ms
96,076 KB
testcase_42 AC 156 ms
95,996 KB
testcase_43 AC 156 ms
95,928 KB
testcase_44 AC 147 ms
95,892 KB
testcase_45 AC 37 ms
57,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X = int(input())
if X == 1:
    print(2)
    print(1,2)
    print('b g')
    exit()
res = []
x = 2
while x < 2*10**5:
    if X%x != 0:
        x += 1
        continue
    while X%x == 0:
        X //= x
        res.append(x)
    x += 1
if X >= 2:
    print(-1)
    exit()
n = len(res)
for i in range(len(res)):
    n += res[i]
if n > 2*10**5:
    print(-1)
    exit()
E = []
C = ['g' for _ in range(n)]
for i in range(len(res)):
    C[i] = 'b'
for i in range(len(res)-1):
    E.append((i+1,i+2))
idx = len(res)
for i in range(len(res)):
    for j in range(res[i]):
        E.append((i+1,idx+1))
        idx += 1
print(n)
for u,v in E:
    print(u,v)
print(*C)
0