結果

問題 No.2929 Miracle Branch
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-06-12 15:14:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 439 bytes
コンパイル時間 380 ms
コンパイル使用メモリ 82,828 KB
実行使用メモリ 83,832 KB
最終ジャッジ日時 2024-08-25 23:41:41
合計ジャッジ時間 10,878 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
58,248 KB
testcase_01 AC 44 ms
58,420 KB
testcase_02 AC 41 ms
57,432 KB
testcase_03 AC 44 ms
58,448 KB
testcase_04 AC 43 ms
58,492 KB
testcase_05 AC 44 ms
58,636 KB
testcase_06 AC 44 ms
59,372 KB
testcase_07 AC 44 ms
58,504 KB
testcase_08 AC 44 ms
59,736 KB
testcase_09 AC 44 ms
58,648 KB
testcase_10 AC 44 ms
58,600 KB
testcase_11 AC 45 ms
59,788 KB
testcase_12 AC 44 ms
58,444 KB
testcase_13 AC 44 ms
59,568 KB
testcase_14 AC 43 ms
59,112 KB
testcase_15 AC 43 ms
59,152 KB
testcase_16 AC 44 ms
59,576 KB
testcase_17 AC 44 ms
58,532 KB
testcase_18 AC 63 ms
69,220 KB
testcase_19 AC 63 ms
70,560 KB
testcase_20 AC 65 ms
72,976 KB
testcase_21 AC 70 ms
76,512 KB
testcase_22 AC 45 ms
58,960 KB
testcase_23 AC 72 ms
76,508 KB
testcase_24 AC 91 ms
78,468 KB
testcase_25 AC 70 ms
76,336 KB
testcase_26 AC 53 ms
64,188 KB
testcase_27 AC 58 ms
65,816 KB
testcase_28 AC 41 ms
59,040 KB
testcase_29 AC 41 ms
58,136 KB
testcase_30 AC 41 ms
58,644 KB
testcase_31 AC 42 ms
58,364 KB
testcase_32 AC 41 ms
58,724 KB
testcase_33 AC 44 ms
58,232 KB
testcase_34 AC 148 ms
83,692 KB
testcase_35 AC 153 ms
83,828 KB
testcase_36 AC 42 ms
59,016 KB
testcase_37 AC 142 ms
83,820 KB
testcase_38 AC 143 ms
83,816 KB
testcase_39 AC 146 ms
83,692 KB
testcase_40 AC 148 ms
83,684 KB
testcase_41 AC 142 ms
83,824 KB
testcase_42 AC 146 ms
83,548 KB
testcase_43 AC 146 ms
83,832 KB
testcase_44 AC 143 ms
83,796 KB
testcase_45 AC 41 ms
57,784 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