結果

問題 No.1330 Multiply or Divide
ユーザー marroncastlemarroncastle
提出日時 2021-01-20 19:57:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 500 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 107,008 KB
最終ジャッジ日時 2024-06-06 00:51:57
合計ジャッジ時間 5,010 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,760 KB
testcase_01 AC 90 ms
105,344 KB
testcase_02 AC 40 ms
53,376 KB
testcase_03 AC 40 ms
53,376 KB
testcase_04 AC 41 ms
53,632 KB
testcase_05 AC 40 ms
53,376 KB
testcase_06 AC 81 ms
99,072 KB
testcase_07 AC 108 ms
107,008 KB
testcase_08 AC 113 ms
101,888 KB
testcase_09 AC 115 ms
101,632 KB
testcase_10 AC 114 ms
101,888 KB
testcase_11 AC 111 ms
101,888 KB
testcase_12 AC 111 ms
101,888 KB
testcase_13 AC 41 ms
53,504 KB
testcase_14 AC 38 ms
53,376 KB
testcase_15 AC 41 ms
53,760 KB
testcase_16 AC 41 ms
53,632 KB
testcase_17 AC 42 ms
53,632 KB
testcase_18 AC 102 ms
101,888 KB
testcase_19 AC 104 ms
101,888 KB
testcase_20 AC 103 ms
101,760 KB
testcase_21 AC 105 ms
102,016 KB
testcase_22 AC 105 ms
101,760 KB
testcase_23 AC 104 ms
101,888 KB
testcase_24 AC 41 ms
53,632 KB
testcase_25 AC 41 ms
53,376 KB
testcase_26 AC 41 ms
53,504 KB
testcase_27 AC 40 ms
53,504 KB
testcase_28 AC 41 ms
53,760 KB
testcase_29 AC 40 ms
53,760 KB
testcase_30 AC 41 ms
53,632 KB
testcase_31 AC 40 ms
53,632 KB
testcase_32 AC 40 ms
53,376 KB
testcase_33 AC 41 ms
53,632 KB
testcase_34 AC 83 ms
98,560 KB
testcase_35 AC 55 ms
70,784 KB
testcase_36 AC 77 ms
94,208 KB
testcase_37 AC 74 ms
90,624 KB
testcase_38 AC 64 ms
79,232 KB
testcase_39 AC 57 ms
72,704 KB
testcase_40 AC 60 ms
75,648 KB
testcase_41 AC 52 ms
68,096 KB
testcase_42 AC 71 ms
87,808 KB
testcase_43 AC 74 ms
91,392 KB
testcase_44 AC 85 ms
100,864 KB
testcase_45 AC 86 ms
101,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, P = map(int, input().split())
A = list(map(int, input().split()))
maxa = max(A)
from collections import defaultdict
dp = defaultdict(lambda: 0)
cnts = [1]*50
for i in range(N):
  cnt = 0
  while A[i]%P==0:
    cnt += 1
    A[i] //= P
  cnts[cnt] = max(cnts[cnt], A[i])
dp[0] = 1
if max(A)==1 and maxa<=M:
  print(-1)
  exit()
ans = 0
p = 1
while p*maxa <= M:
  for i in range(50):
    dp[ans+i+1] = max(dp[ans+i+1], p*cnts[i])
  ans += 1
  p = dp[ans]
if p>M:
  print(ans)
else:
  print(ans+1)
0