結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,796 KB
testcase_01 AC 41 ms
54,968 KB
testcase_02 AC 44 ms
59,808 KB
testcase_03 AC 48 ms
60,600 KB
testcase_04 AC 49 ms
60,592 KB
testcase_05 AC 49 ms
60,736 KB
testcase_06 AC 49 ms
60,168 KB
testcase_07 AC 47 ms
61,284 KB
testcase_08 AC 48 ms
59,988 KB
testcase_09 AC 50 ms
59,804 KB
testcase_10 AC 48 ms
60,244 KB
testcase_11 AC 48 ms
59,884 KB
testcase_12 AC 46 ms
61,196 KB
testcase_13 AC 51 ms
60,672 KB
testcase_14 AC 48 ms
60,304 KB
testcase_15 AC 49 ms
61,160 KB
testcase_16 AC 47 ms
60,788 KB
testcase_17 AC 47 ms
60,672 KB
testcase_18 AC 71 ms
72,908 KB
testcase_19 AC 68 ms
73,328 KB
testcase_20 AC 74 ms
77,276 KB
testcase_21 AC 78 ms
77,068 KB
testcase_22 AC 48 ms
61,748 KB
testcase_23 AC 82 ms
77,356 KB
testcase_24 AC 103 ms
84,660 KB
testcase_25 AC 77 ms
76,972 KB
testcase_26 AC 55 ms
66,084 KB
testcase_27 AC 60 ms
68,468 KB
testcase_28 AC 44 ms
59,352 KB
testcase_29 AC 44 ms
59,204 KB
testcase_30 AC 46 ms
59,552 KB
testcase_31 AC 46 ms
58,948 KB
testcase_32 AC 47 ms
60,172 KB
testcase_33 AC 79 ms
96,584 KB
testcase_34 AC 195 ms
108,344 KB
testcase_35 AC 201 ms
108,392 KB
testcase_36 AC 76 ms
97,336 KB
testcase_37 AC 200 ms
108,252 KB
testcase_38 AC 207 ms
108,088 KB
testcase_39 AC 214 ms
108,352 KB
testcase_40 AC 205 ms
108,496 KB
testcase_41 AC 207 ms
108,484 KB
testcase_42 AC 204 ms
108,352 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 73 ms
96,476 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()

assert len(edges) + 1 < 2 * 10**5
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