結果

問題 No.2929 Miracle Branch
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-06-12 14:52:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 418 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 78,076 KB
最終ジャッジ日時 2024-06-12 15:01:09
合計ジャッジ時間 4,554 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 42 ms
58,540 KB
testcase_02 AC 42 ms
57,596 KB
testcase_03 AC 44 ms
59,360 KB
testcase_04 AC 42 ms
59,448 KB
testcase_05 AC 43 ms
59,112 KB
testcase_06 AC 43 ms
58,696 KB
testcase_07 AC 44 ms
58,824 KB
testcase_08 AC 44 ms
58,372 KB
testcase_09 AC 44 ms
58,656 KB
testcase_10 AC 43 ms
59,740 KB
testcase_11 AC 41 ms
59,072 KB
testcase_12 AC 41 ms
58,184 KB
testcase_13 AC 41 ms
59,336 KB
testcase_14 AC 40 ms
59,080 KB
testcase_15 AC 42 ms
58,372 KB
testcase_16 AC 42 ms
58,576 KB
testcase_17 AC 41 ms
59,208 KB
testcase_18 AC 60 ms
69,192 KB
testcase_19 AC 60 ms
71,576 KB
testcase_20 AC 60 ms
72,552 KB
testcase_21 AC 66 ms
76,064 KB
testcase_22 AC 42 ms
59,328 KB
testcase_23 AC 67 ms
75,940 KB
testcase_24 AC 87 ms
78,076 KB
testcase_25 AC 64 ms
76,400 KB
testcase_26 AC 50 ms
63,272 KB
testcase_27 AC 55 ms
65,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X=int(input())
if X==0:
	print(2)
	print(1,2)
	print("b g")
	exit()
g=[]
while X%4==0:
    g.append(4)
    X//=4
for i in range(2,200000):
    while X%i==0:
        g.append(i)
        X//=i
if X!=1:
    print(-1)
    exit()
print(sum(g)+len(g))
c=["b"]*len(g)+["g"]*sum(g)
pos=len(g)+1
for i in range(len(g)):
    if i!=0:
        print(i,i+1)
    for j in range(g[i]):
        print(i+1,pos)
        pos+=1
print(*c)
0