結果

問題 No.2929 Miracle Branch
ユーザー nikoro256nikoro256
提出日時 2024-10-12 16:28:10
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 880 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 92,928 KB
最終ジャッジ日時 2024-10-12 16:28:16
合計ジャッジ時間 4,435 ms
ジャッジサーバーID
(参考情報)
judge / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
57,088 KB
testcase_01 AC 33 ms
52,480 KB
testcase_02 AC 64 ms
92,928 KB
testcase_03 TLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def factorization(n):
    arr = []
    temp = n
    i=2
    while i*i<=n:
        if temp%i==0:
            cnt=0
            while temp%i==0:
                cnt+=1
                temp //= i
            arr.append([i, cnt])
        i+=1
    if temp!=1:
        arr.append([temp, 1])
    return arr

edge=[]
color=["b"]
big = 0
X=int(input())
fac=factorization(X)
if len(fac)==0:
    fac.append((1,1))
left=0
for a,b in fac:
    for _ in range(b):
        big+=1
        if big!=1:
            edge.append((left,big))
            color.append("b")
        if big>2*10**5:
            print(-1)
            exit(0)
        left=big
        for i in range(a):
            big+=1
            edge.append((left,big))
            color.append("g")
            if big>2*10**5:
                print(-1)
                exit(0)
print(big)
for u,v in edge:
    print(u, v)
print(*color)
0