結果

問題 No.2929 Miracle Branch
ユーザー kmmtkmkmmtkm
提出日時 2024-10-12 17:00:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,131 bytes
コンパイル時間 559 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 109,640 KB
最終ジャッジ日時 2024-10-12 17:01:58
合計ジャッジ時間 12,305 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
51,840 KB
testcase_01 WA -
testcase_02 AC 56 ms
62,336 KB
testcase_03 AC 56 ms
61,952 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 57 ms
61,952 KB
testcase_09 AC 56 ms
62,208 KB
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 82 ms
73,472 KB
testcase_19 AC 85 ms
74,880 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 58 ms
62,208 KB
testcase_23 AC 100 ms
79,744 KB
testcase_24 AC 129 ms
90,624 KB
testcase_25 AC 92 ms
78,592 KB
testcase_26 AC 69 ms
67,968 KB
testcase_27 AC 74 ms
69,760 KB
testcase_28 AC 55 ms
62,080 KB
testcase_29 AC 55 ms
62,464 KB
testcase_30 AC 55 ms
62,080 KB
testcase_31 AC 54 ms
62,336 KB
testcase_32 AC 54 ms
61,952 KB
testcase_33 AC 115 ms
106,496 KB
testcase_34 AC 244 ms
109,072 KB
testcase_35 AC 234 ms
109,068 KB
testcase_36 AC 114 ms
106,368 KB
testcase_37 AC 237 ms
109,576 KB
testcase_38 AC 240 ms
109,448 KB
testcase_39 AC 236 ms
109,320 KB
testcase_40 AC 239 ms
109,640 KB
testcase_41 AC 239 ms
109,196 KB
testcase_42 AC 237 ms
109,060 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 113 ms
108,032 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


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