結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,480 KB
testcase_01 WA -
testcase_02 AC 37 ms
57,216 KB
testcase_03 AC 36 ms
52,608 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 34 ms
52,752 KB
testcase_09 AC 33 ms
52,736 KB
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 52 ms
68,224 KB
testcase_19 AC 52 ms
69,120 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 34 ms
52,864 KB
testcase_23 AC 61 ms
76,248 KB
testcase_24 AC 78 ms
78,284 KB
testcase_25 AC 57 ms
76,232 KB
testcase_26 AC 44 ms
62,720 KB
testcase_27 AC 48 ms
65,536 KB
testcase_28 AC 38 ms
57,216 KB
testcase_29 AC 38 ms
57,088 KB
testcase_30 AC 38 ms
57,600 KB
testcase_31 AC 38 ms
57,216 KB
testcase_32 AC 37 ms
57,600 KB
testcase_33 AC 45 ms
57,088 KB
testcase_34 AC 131 ms
84,124 KB
testcase_35 AC 132 ms
83,660 KB
testcase_36 AC 38 ms
57,472 KB
testcase_37 AC 160 ms
83,728 KB
testcase_38 AC 141 ms
83,600 KB
testcase_39 AC 136 ms
83,656 KB
testcase_40 AC 144 ms
83,656 KB
testcase_41 AC 166 ms
83,652 KB
testcase_42 AC 153 ms
83,604 KB
testcase_43 AC 118 ms
83,228 KB
testcase_44 AC 121 ms
83,472 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(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:]

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