結果

問題 No.2929 Miracle Branch
ユーザー miya145592miya145592
提出日時 2024-10-12 16:22:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 887 bytes
コンパイル時間 532 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 114,128 KB
最終ジャッジ日時 2024-10-12 16:22:55
合計ジャッジ時間 10,176 ms
ジャッジサーバーID
(参考情報)
judge4 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,740 KB
testcase_01 AC 35 ms
53,012 KB
testcase_02 AC 37 ms
57,584 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 58 ms
70,956 KB
testcase_19 AC 56 ms
72,572 KB
testcase_20 AC 60 ms
74,376 KB
testcase_21 AC 64 ms
77,288 KB
testcase_22 WA -
testcase_23 AC 76 ms
78,432 KB
testcase_24 AC 92 ms
88,332 KB
testcase_25 WA -
testcase_26 AC 45 ms
64,116 KB
testcase_27 AC 49 ms
67,104 KB
testcase_28 AC 39 ms
58,960 KB
testcase_29 AC 44 ms
59,092 KB
testcase_30 AC 39 ms
58,908 KB
testcase_31 AC 41 ms
58,072 KB
testcase_32 AC 38 ms
59,396 KB
testcase_33 AC 36 ms
58,196 KB
testcase_34 AC 214 ms
110,680 KB
testcase_35 AC 198 ms
110,436 KB
testcase_36 AC 37 ms
59,112 KB
testcase_37 AC 191 ms
110,436 KB
testcase_38 AC 185 ms
110,576 KB
testcase_39 AC 216 ms
110,520 KB
testcase_40 AC 187 ms
110,612 KB
testcase_41 AC 191 ms
110,436 KB
testcase_42 AC 216 ms
110,612 KB
testcase_43 AC 175 ms
114,128 KB
testcase_44 AC 176 ms
113,984 KB
testcase_45 AC 35 ms
58,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def factorization(n):
    arr = []
    temp = n
    for i in range(2, int(-(-n**0.5//1))+1):
        if i>2*10**5:
            break
        if temp%i==0:
            cnt=0
            while temp%i==0:
                cnt+=1
                temp //= i
            arr.append([i, cnt])

    if temp!=1:
        arr.append([temp, 1])

    if arr==[]:
        arr.append([n, 1])

    return arr

import sys
input = sys.stdin.readline
X = int(input())
F = factorization(X)
cnt = 0
for p, e in F:
    cnt += (p+1)*e
if cnt>2*10**5:
    print(-1)
    exit()
n = cnt
uv = []
c = []
i = 0
j = -1
for p, e in F:
    for _ in range(e):
        if j>=0:
            uv.append([i+1, j+1])
            i = j
        c.append("b")
        j = i+1
        for _ in range(p):
            uv.append([i+1, j+1])
            c.append("g")
            j+=1
print(n)
for u, v in uv:
    print(u, v)
print(*c)
0