結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,740 KB
testcase_01 AC 32 ms
52,072 KB
testcase_02 AC 35 ms
58,932 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
69,352 KB
testcase_19 AC 52 ms
69,920 KB
testcase_20 AC 53 ms
73,480 KB
testcase_21 AC 60 ms
76,436 KB
testcase_22 WA -
testcase_23 AC 59 ms
76,452 KB
testcase_24 AC 74 ms
78,396 KB
testcase_25 WA -
testcase_26 AC 44 ms
63,992 KB
testcase_27 AC 48 ms
67,052 KB
testcase_28 AC 38 ms
58,644 KB
testcase_29 AC 38 ms
57,788 KB
testcase_30 AC 36 ms
57,796 KB
testcase_31 AC 37 ms
58,200 KB
testcase_32 AC 37 ms
58,516 KB
testcase_33 AC 35 ms
57,864 KB
testcase_34 AC 136 ms
83,732 KB
testcase_35 AC 129 ms
83,724 KB
testcase_36 AC 37 ms
57,860 KB
testcase_37 AC 131 ms
83,476 KB
testcase_38 AC 139 ms
83,732 KB
testcase_39 AC 130 ms
83,988 KB
testcase_40 AC 146 ms
83,468 KB
testcase_41 AC 140 ms
83,708 KB
testcase_42 AC 137 ms
83,600 KB
testcase_43 AC 147 ms
83,428 KB
testcase_44 AC 113 ms
83,480 KB
testcase_45 AC 34 ms
52,700 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)
cnt2 = sum(1 for x in pf if x == 2)
pf.extend([4]*(cnt2//2))
pf = pf[cnt2//2:]

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