結果

問題 No.1330 Multiply or Divide
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-02-14 08:28:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 186 ms / 2,000 ms
コード長 791 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 106,900 KB
最終ジャッジ日時 2024-07-21 13:55:46
合計ジャッジ時間 5,233 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
52,480 KB
testcase_01 AC 101 ms
106,900 KB
testcase_02 AC 41 ms
52,480 KB
testcase_03 AC 41 ms
52,608 KB
testcase_04 AC 40 ms
52,872 KB
testcase_05 AC 40 ms
52,608 KB
testcase_06 AC 87 ms
97,536 KB
testcase_07 AC 186 ms
106,624 KB
testcase_08 AC 121 ms
102,016 KB
testcase_09 AC 125 ms
102,192 KB
testcase_10 AC 118 ms
101,988 KB
testcase_11 AC 120 ms
102,016 KB
testcase_12 AC 125 ms
102,016 KB
testcase_13 AC 41 ms
52,224 KB
testcase_14 AC 40 ms
52,224 KB
testcase_15 AC 40 ms
52,864 KB
testcase_16 AC 41 ms
52,224 KB
testcase_17 AC 41 ms
52,736 KB
testcase_18 AC 108 ms
101,888 KB
testcase_19 AC 108 ms
102,272 KB
testcase_20 AC 107 ms
102,016 KB
testcase_21 AC 107 ms
102,016 KB
testcase_22 AC 108 ms
102,016 KB
testcase_23 AC 108 ms
100,068 KB
testcase_24 AC 41 ms
52,864 KB
testcase_25 AC 40 ms
52,352 KB
testcase_26 AC 41 ms
52,352 KB
testcase_27 AC 41 ms
52,608 KB
testcase_28 AC 40 ms
52,096 KB
testcase_29 AC 41 ms
52,480 KB
testcase_30 AC 41 ms
52,864 KB
testcase_31 AC 40 ms
52,480 KB
testcase_32 AC 40 ms
52,352 KB
testcase_33 AC 42 ms
52,480 KB
testcase_34 AC 86 ms
97,280 KB
testcase_35 AC 57 ms
69,888 KB
testcase_36 AC 81 ms
93,440 KB
testcase_37 AC 77 ms
89,216 KB
testcase_38 AC 66 ms
78,336 KB
testcase_39 AC 58 ms
71,424 KB
testcase_40 AC 61 ms
74,752 KB
testcase_41 AC 52 ms
67,584 KB
testcase_42 AC 74 ms
86,528 KB
testcase_43 AC 78 ms
90,752 KB
testcase_44 AC 90 ms
97,792 KB
testcase_45 AC 91 ms
97,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop,heappush
def main1(n,m,p,a):
  d={}
  mxv=0
  for x in a:
    mxv=max(mxv,x)
    cnt=1
    while x%p==0:
      cnt+=1
      x//=p
    if x==1:continue
    if cnt in d:d[cnt]=max(d[cnt],x)
    else:d[cnt]=x
  if mxv>m:return 1
  if len(d)==0:return -1
  todo=[[0,1]]
  costary=[0]*1000
  costary[0]=1
  ans=float('inf')
  while todo:
    c,v=heappop(todo)
    if costary[c]>v:continue
    if v>m:
      ans=min(ans,c)
      continue
    if v*mxv>m:
      ans=min(ans,c+1)
      continue
    for key,value in d.items():
      if costary[c+key]<v*value:
        costary[c+key]=v*value
        heappush(todo,[c+key,v*value])
  return ans

if __name__=='__main__':
  n,m,p=map(int,input().split())
  a=list(map(int,input().split()))
  ret1=main1(n,m,p,a)
  print(ret1)
0