結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
54,080 KB
testcase_01 AC 38 ms
52,244 KB
testcase_02 AC 37 ms
57,920 KB
testcase_03 AC 37 ms
53,384 KB
testcase_04 AC 35 ms
52,824 KB
testcase_05 AC 36 ms
53,948 KB
testcase_06 AC 37 ms
53,808 KB
testcase_07 AC 38 ms
54,200 KB
testcase_08 AC 37 ms
52,808 KB
testcase_09 AC 37 ms
52,872 KB
testcase_10 AC 37 ms
54,220 KB
testcase_11 AC 36 ms
53,252 KB
testcase_12 AC 36 ms
52,744 KB
testcase_13 AC 39 ms
53,724 KB
testcase_14 AC 35 ms
53,660 KB
testcase_15 AC 39 ms
53,888 KB
testcase_16 AC 37 ms
53,420 KB
testcase_17 AC 42 ms
53,908 KB
testcase_18 AC 57 ms
70,168 KB
testcase_19 AC 57 ms
70,168 KB
testcase_20 AC 59 ms
73,176 KB
testcase_21 AC 63 ms
76,164 KB
testcase_22 AC 40 ms
54,072 KB
testcase_23 AC 67 ms
76,088 KB
testcase_24 AC 82 ms
78,540 KB
testcase_25 AC 60 ms
76,136 KB
testcase_26 AC 46 ms
64,320 KB
testcase_27 AC 51 ms
65,664 KB
testcase_28 AC 42 ms
58,060 KB
testcase_29 AC 39 ms
58,068 KB
testcase_30 AC 39 ms
57,952 KB
testcase_31 AC 42 ms
58,264 KB
testcase_32 AC 41 ms
58,852 KB
testcase_33 AC 39 ms
58,336 KB
testcase_34 AC 176 ms
83,588 KB
testcase_35 AC 161 ms
83,732 KB
testcase_36 AC 39 ms
58,072 KB
testcase_37 AC 150 ms
83,348 KB
testcase_38 AC 162 ms
83,868 KB
testcase_39 AC 142 ms
83,992 KB
testcase_40 AC 152 ms
83,648 KB
testcase_41 AC 174 ms
83,352 KB
testcase_42 AC 146 ms
83,736 KB
testcase_43 AC 131 ms
83,236 KB
testcase_44 AC 128 ms
83,856 KB
testcase_45 AC 35 ms
52,096 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*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