結果

問題 No.2929 Miracle Branch
ユーザー kmmtkmkmmtkm
提出日時 2024-10-12 16:54:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,117 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 109,656 KB
最終ジャッジ日時 2024-10-12 16:54:56
合計ジャッジ時間 9,704 ms
ジャッジサーバーID
(参考情報)
judge / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,876 KB
testcase_01 AC 48 ms
62,068 KB
testcase_02 AC 44 ms
63,172 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 63 ms
75,504 KB
testcase_19 AC 61 ms
76,356 KB
testcase_20 AC 66 ms
78,844 KB
testcase_21 AC 69 ms
79,108 KB
testcase_22 WA -
testcase_23 AC 72 ms
80,244 KB
testcase_24 AC 104 ms
91,104 KB
testcase_25 WA -
testcase_26 AC 51 ms
67,244 KB
testcase_27 AC 58 ms
71,088 KB
testcase_28 AC 43 ms
63,788 KB
testcase_29 AC 43 ms
62,568 KB
testcase_30 AC 41 ms
62,640 KB
testcase_31 AC 44 ms
63,976 KB
testcase_32 AC 64 ms
63,584 KB
testcase_33 AC 89 ms
106,884 KB
testcase_34 AC 193 ms
109,656 KB
testcase_35 AC 188 ms
109,532 KB
testcase_36 AC 93 ms
106,808 KB
testcase_37 AC 208 ms
109,416 KB
testcase_38 AC 192 ms
109,384 KB
testcase_39 AC 194 ms
109,540 KB
testcase_40 AC 217 ms
109,384 KB
testcase_41 AC 193 ms
109,392 KB
testcase_42 AC 193 ms
109,464 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 90 ms
108,320 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))


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