結果

問題 No.2929 Miracle Branch
ユーザー 寝癖寝癖
提出日時 2024-10-12 17:00:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 623 bytes
コンパイル時間 878 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 83,992 KB
最終ジャッジ日時 2024-10-12 17:03:04
合計ジャッジ時間 9,808 ms
ジャッジサーバーID
(参考情報)
judge / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,352 KB
testcase_01 AC 34 ms
51,840 KB
testcase_02 AC 35 ms
57,088 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 53 ms
68,224 KB
testcase_19 AC 51 ms
69,120 KB
testcase_20 AC 53 ms
72,064 KB
testcase_21 AC 60 ms
75,904 KB
testcase_22 WA -
testcase_23 AC 60 ms
76,544 KB
testcase_24 AC 76 ms
78,088 KB
testcase_25 WA -
testcase_26 AC 47 ms
62,464 KB
testcase_27 AC 46 ms
65,280 KB
testcase_28 AC 38 ms
57,344 KB
testcase_29 AC 39 ms
57,088 KB
testcase_30 AC 36 ms
57,304 KB
testcase_31 AC 38 ms
57,088 KB
testcase_32 AC 37 ms
57,600 KB
testcase_33 AC 38 ms
57,344 KB
testcase_34 AC 128 ms
83,652 KB
testcase_35 AC 130 ms
83,532 KB
testcase_36 AC 41 ms
57,088 KB
testcase_37 AC 132 ms
83,588 KB
testcase_38 AC 166 ms
83,608 KB
testcase_39 AC 137 ms
83,772 KB
testcase_40 AC 130 ms
83,580 KB
testcase_41 AC 132 ms
83,992 KB
testcase_42 AC 136 ms
83,396 KB
testcase_43 AC 111 ms
83,020 KB
testcase_44 AC 114 ms
83,528 KB
testcase_45 AC 33 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X = int(input())

M = 2*10**5

def prime_factorize(n):
    res = []
    for i in range(2, 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