結果

問題 No.2929 Miracle Branch
ユーザー ntudantuda
提出日時 2024-10-14 15:30:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 794 bytes
コンパイル時間 385 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 94,208 KB
最終ジャッジ日時 2024-10-14 15:30:17
合計ジャッジ時間 10,955 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 36 ms
52,480 KB
testcase_02 AC 41 ms
57,344 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 65 ms
68,992 KB
testcase_19 AC 64 ms
69,632 KB
testcase_20 WA -
testcase_21 AC 69 ms
75,904 KB
testcase_22 WA -
testcase_23 AC 74 ms
76,660 KB
testcase_24 AC 96 ms
80,696 KB
testcase_25 AC 71 ms
76,672 KB
testcase_26 WA -
testcase_27 AC 57 ms
65,280 KB
testcase_28 AC 40 ms
57,600 KB
testcase_29 AC 41 ms
57,088 KB
testcase_30 AC 40 ms
57,216 KB
testcase_31 AC 40 ms
56,832 KB
testcase_32 AC 43 ms
56,832 KB
testcase_33 AC 43 ms
57,344 KB
testcase_34 AC 197 ms
94,208 KB
testcase_35 AC 175 ms
94,208 KB
testcase_36 AC 40 ms
57,600 KB
testcase_37 AC 173 ms
94,208 KB
testcase_38 AC 185 ms
94,208 KB
testcase_39 AC 174 ms
94,080 KB
testcase_40 AC 177 ms
93,824 KB
testcase_41 AC 193 ms
94,080 KB
testcase_42 AC 170 ms
94,080 KB
testcase_43 AC 157 ms
94,080 KB
testcase_44 AC 162 ms
93,952 KB
testcase_45 AC 36 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def prime_factorize(n):
    a = []
    while n % 2 == 0:
        a.append(2)
        n //= 2
    f = 3
    while f <= INF and f * f <= n:
        if n % f == 0:
            a.append(f)
            n //= f
        else:
            f += 2
    if n != 1:
        a.append(n)
    return a

X = int(input())
INF = 2 * 10 ** 5
D = prime_factorize(X)[::-1]
if D == []:
    D = [1]
D2 = []
while len(D) >= 2 and D[-2:] == [2,2]:
    D.pop()
    D.pop()
    D2.append(4)
D += D2
ans = len(D) + sum(D)
if ans > INF:
    print(-1)
    exit()
b = len(D)
UV = []
tmp = b
for i in range(b):
    if i > 0:
        UV.append((0, i))
    for d in range(D[i]):
        UV.append((i, tmp))
        tmp += 1
else:
    print(ans)
for u, v in UV:
    print(u + 1, v + 1)
C = ["b"] * b + ["g"] * (ans - b)
print(*C)
0