結果

問題 No.2929 Miracle Branch
ユーザー KudeKude
提出日時 2024-10-12 15:39:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 185 ms / 2,000 ms
コード長 772 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 108,304 KB
最終ジャッジ日時 2024-10-12 15:40:06
合計ジャッジ時間 10,011 ms
ジャッジサーバーID
(参考情報)
judge / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,444 KB
testcase_01 AC 44 ms
59,472 KB
testcase_02 AC 44 ms
57,512 KB
testcase_03 AC 43 ms
58,804 KB
testcase_04 AC 43 ms
60,112 KB
testcase_05 AC 45 ms
59,020 KB
testcase_06 AC 45 ms
58,236 KB
testcase_07 AC 42 ms
59,792 KB
testcase_08 AC 43 ms
59,440 KB
testcase_09 AC 42 ms
58,772 KB
testcase_10 AC 42 ms
58,440 KB
testcase_11 AC 43 ms
59,048 KB
testcase_12 AC 43 ms
58,560 KB
testcase_13 AC 41 ms
59,016 KB
testcase_14 AC 41 ms
58,624 KB
testcase_15 AC 42 ms
59,700 KB
testcase_16 AC 41 ms
58,532 KB
testcase_17 AC 41 ms
59,212 KB
testcase_18 AC 58 ms
69,148 KB
testcase_19 AC 62 ms
68,496 KB
testcase_20 AC 60 ms
71,820 KB
testcase_21 AC 66 ms
76,340 KB
testcase_22 AC 45 ms
59,456 KB
testcase_23 AC 67 ms
76,996 KB
testcase_24 AC 86 ms
84,240 KB
testcase_25 AC 63 ms
74,396 KB
testcase_26 AC 46 ms
62,540 KB
testcase_27 AC 52 ms
64,912 KB
testcase_28 AC 40 ms
57,880 KB
testcase_29 AC 39 ms
58,624 KB
testcase_30 AC 39 ms
58,828 KB
testcase_31 AC 40 ms
59,156 KB
testcase_32 AC 38 ms
58,364 KB
testcase_33 AC 42 ms
59,016 KB
testcase_34 AC 161 ms
108,068 KB
testcase_35 AC 172 ms
108,128 KB
testcase_36 AC 41 ms
59,036 KB
testcase_37 AC 185 ms
107,964 KB
testcase_38 AC 161 ms
108,176 KB
testcase_39 AC 171 ms
108,172 KB
testcase_40 AC 182 ms
108,304 KB
testcase_41 AC 165 ms
107,944 KB
testcase_42 AC 162 ms
107,984 KB
testcase_43 AC 137 ms
108,112 KB
testcase_44 AC 148 ms
107,892 KB
testcase_45 AC 40 ms
58,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x = int(input())
if x == 1:
    print('''2
1 2
b g''')
    exit()
# 2:3
# 4:5
# 8:9
d = []
for p in range(2, 2 * 10 ** 5):
    cnt = 0
    while x % p == 0:
        x //= p
        cnt += 1
    while cnt:
        if p == 2 and cnt >= 2:
            d.append(4)
            cnt -= 2
        else:
            d.append(p)
            cnt -= 1
n = sum(d) + len(d)
if x != 1 or n > 2 * 10 ** 5:
    print(-1)
    exit()
last = -1
id = 0
col = []
es = []
for x in d:
    if last != -1:
        es.append((last, id))
    last = id
    col.append('b')
    for i in range(x):
        es.append((last, last + 1 + i))
        col.append('g')
    id += 1 + x

assert id == n and len(es) == n - 1 and len(col) == n
print(n)
for u, v in es:
    print(u + 1, v + 1)
print(' '.join(col))
0