結果

問題 No.2929 Miracle Branch
ユーザー kusirakusirakusirakusira
提出日時 2024-06-15 10:25:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 210 ms / 2,000 ms
コード長 1,032 bytes
コンパイル時間 544 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 108,388 KB
最終ジャッジ日時 2024-08-25 23:41:44
合計ジャッジ時間 10,653 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,736 KB
testcase_01 AC 43 ms
52,532 KB
testcase_02 AC 40 ms
59,216 KB
testcase_03 AC 43 ms
59,592 KB
testcase_04 AC 51 ms
59,336 KB
testcase_05 AC 45 ms
59,120 KB
testcase_06 AC 45 ms
58,860 KB
testcase_07 AC 45 ms
58,776 KB
testcase_08 AC 45 ms
59,540 KB
testcase_09 AC 46 ms
59,376 KB
testcase_10 AC 46 ms
60,424 KB
testcase_11 AC 46 ms
58,716 KB
testcase_12 AC 45 ms
58,844 KB
testcase_13 AC 45 ms
60,292 KB
testcase_14 AC 45 ms
59,388 KB
testcase_15 AC 45 ms
58,720 KB
testcase_16 AC 44 ms
58,368 KB
testcase_17 AC 48 ms
59,920 KB
testcase_18 AC 63 ms
70,492 KB
testcase_19 AC 63 ms
71,216 KB
testcase_20 AC 64 ms
74,612 KB
testcase_21 AC 72 ms
77,312 KB
testcase_22 AC 40 ms
53,980 KB
testcase_23 AC 77 ms
78,116 KB
testcase_24 AC 107 ms
85,872 KB
testcase_25 AC 71 ms
77,200 KB
testcase_26 AC 48 ms
65,116 KB
testcase_27 AC 55 ms
67,412 KB
testcase_28 AC 43 ms
58,148 KB
testcase_29 AC 43 ms
58,360 KB
testcase_30 AC 43 ms
57,444 KB
testcase_31 AC 44 ms
58,472 KB
testcase_32 AC 42 ms
58,112 KB
testcase_33 AC 41 ms
58,288 KB
testcase_34 AC 209 ms
105,888 KB
testcase_35 AC 206 ms
105,888 KB
testcase_36 AC 41 ms
58,512 KB
testcase_37 AC 197 ms
105,556 KB
testcase_38 AC 206 ms
105,584 KB
testcase_39 AC 204 ms
105,636 KB
testcase_40 AC 206 ms
105,648 KB
testcase_41 AC 198 ms
105,628 KB
testcase_42 AC 202 ms
106,144 KB
testcase_43 AC 198 ms
108,388 KB
testcase_44 AC 210 ms
106,160 KB
testcase_45 AC 41 ms
58,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def factorization(n):
    arr = []
    temp = n
    for i in range(2, min(int(n**(1/2)+5), 2*10**5)):
        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

n = int(input())
F = factorization(n)
A = []

for i in range(len(F)):
    if(F[i][0] == 2):
        for _ in range(F[i][1] // 2):
            A.append(4)
            
        for _ in range(F[i][1] % 2):
            A.append(2)
    else:
        for _ in range(F[i][1]):
            A.append(F[i][0])

cnt = len(A) + sum(A)

if(cnt > 2*10**5):
    print(-1)
    exit()
    
E = []
C = [-1] * cnt

pu = -1
v = 0
for i in range(len(A)):
    u = v
    C[u] = "b"
    if(pu != -1):
        E.append([pu+1, u+1])
    pu = u
    for _ in range(A[i]):
        v += 1
        E.append([u+1, v+1])
        C[v] = "g"
    v += 1

print(cnt)
for e in E:
    print(*e)
print(*C)



0