結果

問題 No.2929 Miracle Branch
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-09-25 14:26:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 467 bytes
コンパイル時間 391 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 84,216 KB
最終ジャッジ日時 2024-09-25 14:26:38
合計ジャッジ時間 11,191 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
58,648 KB
testcase_01 AC 44 ms
58,772 KB
testcase_02 AC 43 ms
58,480 KB
testcase_03 AC 45 ms
58,580 KB
testcase_04 AC 46 ms
58,512 KB
testcase_05 AC 45 ms
59,592 KB
testcase_06 AC 62 ms
59,656 KB
testcase_07 AC 47 ms
58,920 KB
testcase_08 AC 45 ms
59,404 KB
testcase_09 AC 46 ms
59,416 KB
testcase_10 AC 46 ms
59,096 KB
testcase_11 AC 47 ms
58,980 KB
testcase_12 AC 45 ms
58,640 KB
testcase_13 AC 46 ms
58,300 KB
testcase_14 AC 45 ms
59,704 KB
testcase_15 AC 45 ms
59,148 KB
testcase_16 AC 46 ms
60,112 KB
testcase_17 AC 45 ms
58,580 KB
testcase_18 AC 65 ms
70,812 KB
testcase_19 AC 66 ms
70,296 KB
testcase_20 AC 66 ms
73,700 KB
testcase_21 AC 73 ms
76,420 KB
testcase_22 AC 47 ms
58,828 KB
testcase_23 AC 76 ms
76,260 KB
testcase_24 AC 93 ms
78,356 KB
testcase_25 AC 71 ms
76,648 KB
testcase_26 AC 57 ms
64,140 KB
testcase_27 AC 61 ms
66,720 KB
testcase_28 AC 44 ms
57,972 KB
testcase_29 AC 42 ms
59,492 KB
testcase_30 AC 43 ms
58,784 KB
testcase_31 AC 44 ms
58,112 KB
testcase_32 AC 43 ms
58,728 KB
testcase_33 AC 44 ms
58,168 KB
testcase_34 AC 158 ms
84,216 KB
testcase_35 AC 153 ms
84,076 KB
testcase_36 AC 44 ms
59,116 KB
testcase_37 AC 150 ms
83,684 KB
testcase_38 AC 151 ms
83,820 KB
testcase_39 AC 148 ms
84,184 KB
testcase_40 AC 149 ms
84,184 KB
testcase_41 AC 149 ms
84,204 KB
testcase_42 AC 152 ms
83,700 KB
testcase_43 AC 146 ms
83,816 KB
testcase_44 AC 147 ms
83,808 KB
testcase_45 AC 42 ms
58,604 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)
print("余計な文字列")
0