結果

問題 No.2929 Miracle Branch
ユーザー rlangevinrlangevin
提出日時 2024-11-01 12:12:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 198 ms / 2,000 ms
コード長 618 bytes
コンパイル時間 698 ms
コンパイル使用メモリ 82,832 KB
実行使用メモリ 108,976 KB
最終ジャッジ日時 2024-11-01 12:12:47
合計ジャッジ時間 11,786 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,948 KB
testcase_01 AC 40 ms
58,368 KB
testcase_02 AC 39 ms
57,756 KB
testcase_03 AC 42 ms
58,928 KB
testcase_04 AC 46 ms
60,040 KB
testcase_05 AC 46 ms
58,696 KB
testcase_06 AC 46 ms
58,364 KB
testcase_07 AC 46 ms
59,008 KB
testcase_08 AC 46 ms
58,888 KB
testcase_09 AC 46 ms
59,156 KB
testcase_10 AC 45 ms
58,176 KB
testcase_11 AC 45 ms
59,052 KB
testcase_12 AC 45 ms
58,824 KB
testcase_13 AC 45 ms
58,544 KB
testcase_14 AC 46 ms
60,140 KB
testcase_15 AC 46 ms
58,824 KB
testcase_16 AC 45 ms
58,560 KB
testcase_17 AC 45 ms
60,040 KB
testcase_18 AC 69 ms
71,188 KB
testcase_19 AC 69 ms
71,388 KB
testcase_20 AC 67 ms
74,304 KB
testcase_21 AC 74 ms
76,640 KB
testcase_22 AC 43 ms
59,240 KB
testcase_23 AC 71 ms
77,188 KB
testcase_24 AC 96 ms
84,756 KB
testcase_25 AC 70 ms
77,176 KB
testcase_26 AC 53 ms
65,120 KB
testcase_27 AC 57 ms
67,752 KB
testcase_28 AC 39 ms
58,032 KB
testcase_29 AC 40 ms
58,044 KB
testcase_30 AC 40 ms
58,156 KB
testcase_31 AC 40 ms
59,240 KB
testcase_32 AC 41 ms
58,972 KB
testcase_33 AC 82 ms
93,960 KB
testcase_34 AC 198 ms
108,648 KB
testcase_35 AC 177 ms
108,496 KB
testcase_36 AC 71 ms
93,844 KB
testcase_37 AC 197 ms
108,576 KB
testcase_38 AC 187 ms
108,488 KB
testcase_39 AC 189 ms
108,520 KB
testcase_40 AC 196 ms
108,428 KB
testcase_41 AC 176 ms
108,440 KB
testcase_42 AC 189 ms
108,652 KB
testcase_43 AC 167 ms
108,296 KB
testcase_44 AC 160 ms
108,976 KB
testcase_45 AC 68 ms
93,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X = int(input())
if X == 1:
    print(2)
    print(1, 2)
    print("b g")
    exit()

M = 2 * 10 ** 5
L = []
while X % 4 == 0:
    L.append(4)
    X //= 4
for i in range(2, M + 1):
    while X % i == 0:
        L.append(i)
        X //= i

if X != 1:
    print(-1)
    exit()

now = len(L)
GB = ["b"] * now
ans = []
for i in range(now - 1):
    ans.append((i + 1, i + 2))

now += 1
for i in range(len(L)):
    for j in range(L[i]):
        ans.append((i + 1, now))
        now += 1
        GB.append("g")
        
if len(GB) > M:
    print(-1)
    exit()
    
print(len(GB))
for a, b in ans:
    print(a, b)
print(*GB)
0