結果

問題 No.1330 Multiply or Divide
ユーザー googol_S0googol_S0
提出日時 2021-01-08 21:29:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 370 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 145,568 KB
最終ジャッジ日時 2024-11-16 10:14:52
合計ジャッジ時間 13,206 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 428 ms
124,452 KB
testcase_02 AC 35 ms
52,584 KB
testcase_03 AC 35 ms
53,012 KB
testcase_04 AC 35 ms
52,628 KB
testcase_05 AC 35 ms
54,200 KB
testcase_06 AC 92 ms
128,364 KB
testcase_07 AC 172 ms
129,256 KB
testcase_08 AC 627 ms
145,564 KB
testcase_09 AC 637 ms
145,452 KB
testcase_10 AC 641 ms
145,400 KB
testcase_11 AC 647 ms
145,312 KB
testcase_12 AC 648 ms
145,184 KB
testcase_13 AC 37 ms
53,392 KB
testcase_14 AC 35 ms
53,192 KB
testcase_15 AC 35 ms
52,664 KB
testcase_16 AC 36 ms
53,608 KB
testcase_17 AC 36 ms
52,516 KB
testcase_18 AC 619 ms
145,568 KB
testcase_19 AC 637 ms
145,448 KB
testcase_20 AC 638 ms
145,448 KB
testcase_21 AC 605 ms
145,248 KB
testcase_22 AC 637 ms
145,192 KB
testcase_23 WA -
testcase_24 AC 35 ms
52,256 KB
testcase_25 AC 35 ms
53,516 KB
testcase_26 WA -
testcase_27 AC 35 ms
53,824 KB
testcase_28 AC 35 ms
53,488 KB
testcase_29 AC 36 ms
52,656 KB
testcase_30 AC 34 ms
53,012 KB
testcase_31 AC 37 ms
52,376 KB
testcase_32 AC 36 ms
53,128 KB
testcase_33 AC 35 ms
52,564 KB
testcase_34 AC 467 ms
122,684 KB
testcase_35 AC 153 ms
89,268 KB
testcase_36 AC 416 ms
117,956 KB
testcase_37 AC 375 ms
113,908 KB
testcase_38 AC 248 ms
102,096 KB
testcase_39 AC 181 ms
91,764 KB
testcase_40 AC 213 ms
96,896 KB
testcase_41 AC 126 ms
84,928 KB
testcase_42 AC 347 ms
110,304 KB
testcase_43 AC 397 ms
113,812 KB
testcase_44 AC 136 ms
135,120 KB
testcase_45 AC 132 ms
135,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,P=map(int,input().split())
A=list(map(int,input().split()))
B=[]
C=[]
for i in range(N):
  B.append(A[i])
  C.append(1)
  while B[i]%P==0:
    B[i]//=P
    C[i]+=1
Z=max(A)
X=(M+Z-1)//Z
if max(B)==1 and X>1:
  print(-1)
  exit()
D=[[B[i],C[i]] for i in range(N)]
D.sort(key=lambda x:((x[0]**10)**(1/x[1])))
P=0
Y=1
while Y*Z<M:
  Y*=D[-1][0]
  P+=D[-1][1]
print(P+1)
0