結果

問題 No.2929 Miracle Branch
ユーザー loop0919loop0919
提出日時 2024-07-18 01:43:17
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 440 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 84,116 KB
最終ジャッジ日時 2024-08-25 23:42:03
合計ジャッジ時間 9,569 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
57,988 KB
testcase_01 AC 42 ms
58,660 KB
testcase_02 AC 41 ms
58,184 KB
testcase_03 AC 44 ms
60,272 KB
testcase_04 AC 44 ms
58,772 KB
testcase_05 AC 44 ms
58,536 KB
testcase_06 AC 43 ms
58,304 KB
testcase_07 AC 44 ms
59,212 KB
testcase_08 AC 44 ms
58,848 KB
testcase_09 AC 44 ms
59,912 KB
testcase_10 AC 45 ms
60,264 KB
testcase_11 AC 44 ms
59,400 KB
testcase_12 AC 43 ms
58,716 KB
testcase_13 AC 44 ms
58,544 KB
testcase_14 AC 44 ms
58,612 KB
testcase_15 AC 44 ms
58,848 KB
testcase_16 AC 43 ms
58,608 KB
testcase_17 AC 43 ms
58,388 KB
testcase_18 AC 63 ms
70,632 KB
testcase_19 AC 66 ms
71,240 KB
testcase_20 AC 64 ms
72,980 KB
testcase_21 AC 70 ms
76,100 KB
testcase_22 AC 44 ms
58,492 KB
testcase_23 AC 72 ms
76,448 KB
testcase_24 AC 94 ms
78,236 KB
testcase_25 AC 69 ms
76,456 KB
testcase_26 AC 55 ms
64,140 KB
testcase_27 AC 58 ms
66,256 KB
testcase_28 AC 42 ms
59,036 KB
testcase_29 AC 41 ms
58,256 KB
testcase_30 AC 42 ms
57,912 KB
testcase_31 AC 42 ms
59,336 KB
testcase_32 AC 42 ms
57,700 KB
testcase_33 AC 42 ms
58,844 KB
testcase_34 AC 147 ms
83,792 KB
testcase_35 AC 148 ms
83,928 KB
testcase_36 AC 43 ms
59,708 KB
testcase_37 AC 146 ms
83,668 KB
testcase_38 AC 149 ms
83,788 KB
testcase_39 AC 144 ms
84,116 KB
testcase_40 AC 145 ms
83,796 KB
testcase_41 AC 149 ms
83,568 KB
testcase_42 AC 146 ms
83,928 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 42 ms
57,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X=int(input())
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()
if len(g)==0:
    g.append(1)
if sum(g)+len(g)>=200000:
	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