結果

問題 No.2929 Miracle Branch
ユーザー loop0919loop0919
提出日時 2024-07-18 01:13:56
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,084 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 108,568 KB
最終ジャッジ日時 2024-08-25 23:41:51
合計ジャッジ時間 10,338 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,476 KB
testcase_01 AC 40 ms
54,928 KB
testcase_02 AC 45 ms
60,296 KB
testcase_03 AC 47 ms
60,356 KB
testcase_04 AC 47 ms
60,732 KB
testcase_05 AC 46 ms
61,532 KB
testcase_06 AC 48 ms
60,616 KB
testcase_07 AC 48 ms
61,084 KB
testcase_08 AC 47 ms
60,744 KB
testcase_09 AC 46 ms
61,580 KB
testcase_10 AC 47 ms
60,428 KB
testcase_11 AC 47 ms
61,316 KB
testcase_12 AC 46 ms
60,292 KB
testcase_13 AC 48 ms
60,556 KB
testcase_14 AC 46 ms
60,476 KB
testcase_15 AC 46 ms
61,024 KB
testcase_16 AC 48 ms
60,464 KB
testcase_17 AC 46 ms
61,328 KB
testcase_18 AC 69 ms
72,728 KB
testcase_19 AC 69 ms
73,592 KB
testcase_20 AC 77 ms
77,044 KB
testcase_21 AC 75 ms
77,096 KB
testcase_22 AC 47 ms
61,264 KB
testcase_23 AC 80 ms
77,428 KB
testcase_24 AC 103 ms
84,864 KB
testcase_25 AC 76 ms
77,260 KB
testcase_26 AC 56 ms
66,148 KB
testcase_27 AC 63 ms
68,480 KB
testcase_28 AC 43 ms
60,048 KB
testcase_29 AC 44 ms
59,316 KB
testcase_30 AC 44 ms
59,476 KB
testcase_31 AC 44 ms
59,864 KB
testcase_32 AC 45 ms
59,496 KB
testcase_33 AC 77 ms
96,448 KB
testcase_34 AC 209 ms
108,224 KB
testcase_35 AC 210 ms
108,504 KB
testcase_36 AC 77 ms
96,324 KB
testcase_37 AC 207 ms
108,568 KB
testcase_38 AC 204 ms
108,144 KB
testcase_39 AC 199 ms
108,548 KB
testcase_40 AC 201 ms
108,216 KB
testcase_41 AC 206 ms
108,204 KB
testcase_42 AC 207 ms
108,352 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 73 ms
94,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict


def factorint(n):
    factor = defaultdict(int)
    for p in range(2, min(n, 2 * 10**5) + 1):
        while n % p == 0:
            factor[p] += 1
            n //= p
    
    if n == 1:
        return factor
    else:
        print(-1)
        exit()


N = int(input())

if N == 1:
    print(2)
    print(1, 2)
    print("g", "b")
    exit()

factor = factorint(N)
factor[4] = factor[2] // 2
factor[2] %= 2

green = []
brown = []
edges = []

cnt = 0
def add_cnt():
    global cnt
    cnt += 1
    if cnt >= 2 * 10**5:
        print(-1)
        exit()

for p, x in factor.items():
    for _ in range(x):
        if cnt > 0:
            edges.append((brown[-1], cnt))
            
        brown.append(cnt)
        add_cnt()
        
        for _ in range(p):
            green.append(cnt)
            edges.append((brown[-1], cnt))
            add_cnt()

print(len(edges) + 1)

for u, v in edges:
    print(u + 1, v + 1)

colors = [None] * (len(edges) + 1)
for g in green:
    colors[g] = "g"
for b in brown:
    colors[b] = "b"

print(*colors)
0