結果

問題 No.2929 Miracle Branch
ユーザー nikoro256nikoro256
提出日時 2024-10-12 16:37:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 193 ms / 2,000 ms
コード長 1,109 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 108,464 KB
最終ジャッジ日時 2024-10-12 16:37:49
合計ジャッジ時間 9,873 ms
ジャッジサーバーID
(参考情報)
judge3 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,712 KB
testcase_01 AC 32 ms
52,224 KB
testcase_02 AC 67 ms
93,056 KB
testcase_03 AC 39 ms
57,728 KB
testcase_04 AC 41 ms
58,624 KB
testcase_05 AC 41 ms
58,240 KB
testcase_06 AC 43 ms
58,368 KB
testcase_07 AC 44 ms
57,856 KB
testcase_08 AC 39 ms
58,240 KB
testcase_09 AC 39 ms
58,368 KB
testcase_10 AC 40 ms
57,984 KB
testcase_11 AC 41 ms
58,368 KB
testcase_12 AC 39 ms
57,984 KB
testcase_13 AC 40 ms
57,984 KB
testcase_14 AC 39 ms
58,112 KB
testcase_15 AC 41 ms
57,728 KB
testcase_16 AC 39 ms
57,728 KB
testcase_17 AC 40 ms
57,984 KB
testcase_18 AC 53 ms
69,504 KB
testcase_19 AC 75 ms
70,656 KB
testcase_20 AC 60 ms
73,600 KB
testcase_21 AC 62 ms
76,288 KB
testcase_22 AC 34 ms
53,248 KB
testcase_23 AC 68 ms
76,800 KB
testcase_24 AC 85 ms
84,224 KB
testcase_25 AC 65 ms
76,288 KB
testcase_26 AC 50 ms
62,976 KB
testcase_27 AC 51 ms
65,792 KB
testcase_28 AC 69 ms
92,928 KB
testcase_29 AC 65 ms
92,928 KB
testcase_30 AC 65 ms
92,800 KB
testcase_31 AC 65 ms
93,184 KB
testcase_32 AC 64 ms
92,928 KB
testcase_33 AC 63 ms
92,672 KB
testcase_34 AC 162 ms
108,416 KB
testcase_35 AC 193 ms
108,288 KB
testcase_36 AC 64 ms
93,184 KB
testcase_37 AC 159 ms
108,160 KB
testcase_38 AC 160 ms
108,160 KB
testcase_39 AC 193 ms
108,160 KB
testcase_40 AC 163 ms
108,332 KB
testcase_41 AC 162 ms
108,032 KB
testcase_42 AC 164 ms
108,464 KB
testcase_43 AC 166 ms
108,416 KB
testcase_44 AC 152 ms
108,288 KB
testcase_45 AC 66 ms
92,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def factorization(n):
    arr = []
    temp = n
    i=2
    while i*i<=n:
        if i>2*10**5:
            break
        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))
fac_ =[]
for a,b in fac:
    if a==2:
        if b>=2:
            fac_.append((4,b//2))
        if b%2!=0:
            fac_.append((2,b%2))
    else:
        fac_.append((a,b))
fac = fac_
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