結果

問題 No.2929 Miracle Branch
ユーザー 寝癖寝癖
提出日時 2024-10-12 17:13:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 623 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 84,116 KB
最終ジャッジ日時 2024-10-12 17:13:14
合計ジャッジ時間 8,930 ms
ジャッジサーバーID
(参考情報)
judge4 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,840 KB
testcase_01 WA -
testcase_02 AC 34 ms
57,216 KB
testcase_03 AC 40 ms
52,608 KB
testcase_04 AC 34 ms
52,736 KB
testcase_05 WA -
testcase_06 AC 34 ms
52,992 KB
testcase_07 AC 34 ms
52,864 KB
testcase_08 AC 32 ms
52,352 KB
testcase_09 AC 34 ms
52,608 KB
testcase_10 AC 33 ms
52,480 KB
testcase_11 AC 34 ms
52,864 KB
testcase_12 AC 31 ms
52,352 KB
testcase_13 AC 33 ms
52,608 KB
testcase_14 AC 33 ms
52,608 KB
testcase_15 AC 34 ms
52,736 KB
testcase_16 AC 33 ms
52,608 KB
testcase_17 AC 32 ms
52,992 KB
testcase_18 AC 51 ms
68,480 KB
testcase_19 AC 53 ms
69,248 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 32 ms
52,864 KB
testcase_23 AC 59 ms
76,392 KB
testcase_24 AC 73 ms
78,156 KB
testcase_25 AC 56 ms
76,416 KB
testcase_26 AC 44 ms
63,232 KB
testcase_27 AC 52 ms
64,768 KB
testcase_28 AC 37 ms
57,344 KB
testcase_29 AC 37 ms
57,472 KB
testcase_30 AC 35 ms
57,472 KB
testcase_31 AC 37 ms
57,600 KB
testcase_32 AC 36 ms
57,344 KB
testcase_33 AC 37 ms
57,216 KB
testcase_34 AC 131 ms
83,784 KB
testcase_35 AC 130 ms
83,656 KB
testcase_36 AC 36 ms
57,728 KB
testcase_37 AC 127 ms
83,708 KB
testcase_38 AC 149 ms
83,836 KB
testcase_39 AC 131 ms
83,536 KB
testcase_40 AC 131 ms
84,116 KB
testcase_41 AC 130 ms
83,736 KB
testcase_42 AC 125 ms
84,032 KB
testcase_43 AC 111 ms
83,272 KB
testcase_44 AC 112 ms
84,096 KB
testcase_45 AC 32 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X = int(input())

M = 2*10**5

def prime_factorize(n):
    res = []
    for i in range(3, M+1):
        if i*i > n:
            break
        if n % i != 0:
            continue
        while n % i == 0:
            n //= i
            res.append(i)
    if n != 1 or len(res) == 0:
        res.append(n)
    return res

pf = prime_factorize(X)
if len(pf) + sum(pf) > M:
    print(-1)
    exit()

print(len(pf) + sum(pf))
c = ['b']*len(pf) + ['g']*sum(pf)
for i in range(len(pf)-1):
    print(i+1, i+2)

ind = len(pf)
for i in range(len(pf)):
    for j in range(pf[i]):
        print(i+1, ind+j+1)
    ind += pf[i]
print(*c)
0