結果

問題 No.1330 Multiply or Divide
ユーザー persimmon_t01persimmon_t01
提出日時 2021-01-08 22:11:52
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 745 bytes
コンパイル時間 488 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 387,900 KB
最終ジャッジ日時 2024-11-16 12:37:12
合計ジャッジ時間 27,452 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,168 KB
testcase_01 AC 114 ms
386,404 KB
testcase_02 AC 41 ms
59,040 KB
testcase_03 AC 854 ms
86,820 KB
testcase_04 AC 41 ms
57,600 KB
testcase_05 AC 657 ms
347,964 KB
testcase_06 AC 96 ms
103,936 KB
testcase_07 AC 203 ms
387,900 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 108 ms
101,760 KB
testcase_19 AC 108 ms
101,760 KB
testcase_20 AC 109 ms
101,888 KB
testcase_21 AC 109 ms
101,888 KB
testcase_22 AC 108 ms
101,888 KB
testcase_23 AC 125 ms
99,968 KB
testcase_24 AC 42 ms
52,096 KB
testcase_25 AC 42 ms
51,968 KB
testcase_26 AC 647 ms
87,292 KB
testcase_27 AC 41 ms
51,968 KB
testcase_28 AC 41 ms
51,584 KB
testcase_29 AC 41 ms
51,968 KB
testcase_30 AC 41 ms
51,968 KB
testcase_31 AC 41 ms
51,968 KB
testcase_32 AC 42 ms
52,096 KB
testcase_33 AC 49 ms
54,784 KB
testcase_34 AC 87 ms
95,872 KB
testcase_35 AC 57 ms
68,608 KB
testcase_36 AC 82 ms
91,520 KB
testcase_37 AC 78 ms
88,192 KB
testcase_38 AC 66 ms
76,288 KB
testcase_39 AC 59 ms
69,760 KB
testcase_40 AC 62 ms
72,704 KB
testcase_41 AC 54 ms
65,280 KB
testcase_42 AC 75 ms
84,992 KB
testcase_43 AC 79 ms
88,704 KB
testcase_44 AC 104 ms
100,608 KB
testcase_45 AC 103 ms
238,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main(n,m,p,a):
  ma0=max(a)
  if ma0>m:return 1
  b=[1]*n
  for i in range(n):
    while a[i]%p==0:
      a[i]//=p
      b[i]+=1
  ma1=max(a)
  if ma1==1:
    print(-1)
    exit()
  ary=[0]*30
  for i in range(n):
    ary[b[i]]=max(ary[b[i]],a[i])
  ary=[[i,v] for i,v in enumerate(ary) if v!=0]
  from heapq import heappush,heappop
  todo=[[0,1]]
  inf=float('inf')
  seen=[0]*1000
  seen[0]=1
  # seen[i]:操作回数i回における最大
  while todo:
    i,v=heappop(todo)
    for di,dv in ary:
      if i+di<1000 and seen[i+di]<v*dv:
        seen[i+di]=v*dv
        heappush(todo,[i+di,v*dv])
  for i in range(1000):
    if seen[i]*ma0>m:return i+1
n,m,p=map(int,input().split())
a=list(map(int,input().split()))
print(main(n,m,p,a))

0