結果

問題 No.2929 Miracle Branch
ユーザー kmmtkmkmmtkm
提出日時 2024-10-12 17:01:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,148 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 109,580 KB
最終ジャッジ日時 2024-10-12 17:03:11
合計ジャッジ時間 12,094 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 54 ms
62,208 KB
testcase_02 AC 54 ms
62,080 KB
testcase_03 AC 54 ms
61,952 KB
testcase_04 AC 56 ms
62,976 KB
testcase_05 AC 55 ms
63,232 KB
testcase_06 AC 55 ms
62,848 KB
testcase_07 AC 56 ms
63,360 KB
testcase_08 AC 54 ms
62,128 KB
testcase_09 AC 54 ms
62,208 KB
testcase_10 AC 56 ms
63,360 KB
testcase_11 AC 58 ms
63,104 KB
testcase_12 AC 56 ms
62,592 KB
testcase_13 AC 56 ms
62,848 KB
testcase_14 AC 56 ms
62,848 KB
testcase_15 AC 56 ms
63,360 KB
testcase_16 AC 55 ms
63,104 KB
testcase_17 AC 56 ms
63,232 KB
testcase_18 AC 82 ms
73,856 KB
testcase_19 AC 76 ms
74,752 KB
testcase_20 AC 85 ms
78,720 KB
testcase_21 AC 85 ms
78,900 KB
testcase_22 AC 55 ms
62,336 KB
testcase_23 AC 91 ms
79,872 KB
testcase_24 AC 124 ms
90,752 KB
testcase_25 AC 84 ms
78,592 KB
testcase_26 AC 65 ms
67,328 KB
testcase_27 AC 70 ms
69,888 KB
testcase_28 AC 54 ms
62,336 KB
testcase_29 AC 54 ms
62,572 KB
testcase_30 AC 54 ms
62,080 KB
testcase_31 AC 55 ms
62,464 KB
testcase_32 AC 54 ms
62,336 KB
testcase_33 AC 107 ms
106,368 KB
testcase_34 AC 229 ms
109,220 KB
testcase_35 AC 238 ms
109,444 KB
testcase_36 AC 115 ms
106,496 KB
testcase_37 AC 227 ms
109,192 KB
testcase_38 AC 228 ms
109,192 KB
testcase_39 AC 238 ms
109,580 KB
testcase_40 AC 255 ms
109,332 KB
testcase_41 AC 236 ms
109,192 KB
testcase_42 AC 236 ms
109,176 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 118 ms
107,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
# import sympy


def debug(*args):
    print(*args, file=sys.stderr)


x = int(input())
if x == 1:
    print(2)
    print(1, 2)
    print('b', 'g')
    exit()


def sieve_of_eratosthenes(limit):
    sieve = [True] * (limit + 1)
    sieve[0] = sieve[1] = False
    for start in range(2, int(limit**0.5) + 1):
        if sieve[start]:
            for i in range(start * start, limit + 1, start):
                sieve[i] = False
    return [num for num, is_prime in enumerate(sieve) if is_prime]


primes = sieve_of_eratosthenes(2 * (10**5))
primes[0] = 4
primes.append(2)


parent = 1
edges = []
c = ['b']
for p in primes:
    while x % p == 0:
        x //= p
        for i in range(parent+1, parent+p+1):
            edges.append([parent, i])
            c.append('g')
        edges.append([parent, parent+p+1])
        c.append('b')
        parent = len(c)
        if len(c) > 2*(10**5):
            print(-1)
            exit()
    if x == 1:
        print(len(c)-1)
        for u, v in edges[:-1]:
            print(u, v)
        print(*c[:-1])
        exit()
    elif len(c) > 2*(10**5):
        print(-1)
        exit()

print(-1)
0