結果

問題 No.1330 Multiply or Divide
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-02-14 08:23:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 703 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 108,672 KB
最終ジャッジ日時 2024-07-21 13:50:51
合計ジャッジ時間 5,642 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 114 ms
108,672 KB
testcase_02 AC 42 ms
52,096 KB
testcase_03 AC 43 ms
52,352 KB
testcase_04 AC 42 ms
52,096 KB
testcase_05 AC 42 ms
52,224 KB
testcase_06 AC 104 ms
99,584 KB
testcase_07 AC 199 ms
108,288 KB
testcase_08 AC 133 ms
101,760 KB
testcase_09 AC 139 ms
102,016 KB
testcase_10 AC 134 ms
102,016 KB
testcase_11 AC 134 ms
101,760 KB
testcase_12 AC 139 ms
102,272 KB
testcase_13 AC 42 ms
52,608 KB
testcase_14 AC 42 ms
52,608 KB
testcase_15 AC 43 ms
52,480 KB
testcase_16 AC 43 ms
52,864 KB
testcase_17 AC 42 ms
52,480 KB
testcase_18 AC 114 ms
101,760 KB
testcase_19 AC 112 ms
101,888 KB
testcase_20 AC 115 ms
102,016 KB
testcase_21 AC 112 ms
101,888 KB
testcase_22 AC 111 ms
102,016 KB
testcase_23 AC 123 ms
100,508 KB
testcase_24 AC 43 ms
52,608 KB
testcase_25 AC 43 ms
52,096 KB
testcase_26 AC 42 ms
52,224 KB
testcase_27 AC 42 ms
52,096 KB
testcase_28 AC 45 ms
52,480 KB
testcase_29 AC 43 ms
52,096 KB
testcase_30 AC 42 ms
52,352 KB
testcase_31 AC 42 ms
52,480 KB
testcase_32 AC 42 ms
52,096 KB
testcase_33 AC 43 ms
52,352 KB
testcase_34 AC 91 ms
97,920 KB
testcase_35 AC 60 ms
69,760 KB
testcase_36 AC 84 ms
93,568 KB
testcase_37 AC 82 ms
89,728 KB
testcase_38 AC 68 ms
78,208 KB
testcase_39 AC 61 ms
71,296 KB
testcase_40 AC 66 ms
74,880 KB
testcase_41 AC 57 ms
66,944 KB
testcase_42 AC 79 ms
86,912 KB
testcase_43 AC 83 ms
91,136 KB
testcase_44 AC 104 ms
100,352 KB
testcase_45 AC 105 ms
100,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop,heappush
def main1(n,m,p,a):
  if any([x>m for x in a]):return 1
  bd=m
  d={}
  for x in a:
    bd=min(bd,(m+1+x-1)//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 len(d)==0:return -1
  todo=[[0,1]]
  costary=[0]*1000
  costary[0]=1
  while todo:
    c,v=heappop(todo)
    if costary[c]>v:continue
    if v>bd:return c+1
    for key,value in d.items():
      if costary[c+key]<v*value:
        costary[c+key]=v*value
        heappush(todo,[c+key,v*value])

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