結果

問題 No.2929 Miracle Branch
コンテスト
ユーザー miya145592
提出日時 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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 26 WA * 17
権限があれば一括ダウンロードができます

ソースコード

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