結果

問題 No.2929 Miracle Branch
ユーザー nikoro256nikoro256
提出日時 2024-10-12 16:29:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 920 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,568 KB
実行使用メモリ 108,668 KB
最終ジャッジ日時 2024-10-12 16:30:02
合計ジャッジ時間 10,266 ms
ジャッジサーバーID
(参考情報)
judge / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,972 KB
testcase_01 AC 37 ms
53,196 KB
testcase_02 AC 68 ms
94,888 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
69,956 KB
testcase_19 AC 56 ms
71,000 KB
testcase_20 AC 58 ms
73,920 KB
testcase_21 AC 66 ms
76,728 KB
testcase_22 WA -
testcase_23 AC 70 ms
76,780 KB
testcase_24 AC 92 ms
84,176 KB
testcase_25 WA -
testcase_26 AC 46 ms
64,720 KB
testcase_27 AC 49 ms
66,276 KB
testcase_28 AC 68 ms
94,028 KB
testcase_29 AC 68 ms
93,476 KB
testcase_30 AC 67 ms
93,816 KB
testcase_31 AC 65 ms
93,984 KB
testcase_32 AC 75 ms
93,888 KB
testcase_33 AC 69 ms
94,836 KB
testcase_34 AC 169 ms
108,464 KB
testcase_35 AC 167 ms
108,272 KB
testcase_36 AC 69 ms
94,248 KB
testcase_37 AC 169 ms
108,528 KB
testcase_38 AC 198 ms
108,248 KB
testcase_39 AC 182 ms
108,060 KB
testcase_40 AC 171 ms
108,068 KB
testcase_41 AC 169 ms
108,516 KB
testcase_42 AC 171 ms
108,668 KB
testcase_43 AC 149 ms
108,148 KB
testcase_44 AC 151 ms
108,164 KB
testcase_45 AC 65 ms
93,184 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))
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