結果

問題 No.1330 Multiply or Divide
ユーザー simansiman
提出日時 2022-02-28 07:28:59
言語 Ruby
(3.3.0)
結果
AC  
実行時間 353 ms / 2,000 ms
コード長 643 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 26,240 KB
最終ジャッジ日時 2024-07-06 10:14:21
合計ジャッジ時間 8,776 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
12,288 KB
testcase_01 AC 172 ms
25,600 KB
testcase_02 AC 72 ms
12,160 KB
testcase_03 AC 72 ms
12,160 KB
testcase_04 AC 71 ms
12,160 KB
testcase_05 AC 71 ms
12,288 KB
testcase_06 AC 163 ms
25,728 KB
testcase_07 AC 353 ms
25,600 KB
testcase_08 AC 207 ms
26,240 KB
testcase_09 AC 213 ms
26,240 KB
testcase_10 AC 168 ms
26,240 KB
testcase_11 AC 164 ms
26,240 KB
testcase_12 AC 167 ms
26,112 KB
testcase_13 AC 74 ms
12,160 KB
testcase_14 AC 70 ms
12,416 KB
testcase_15 AC 72 ms
12,288 KB
testcase_16 AC 71 ms
12,416 KB
testcase_17 AC 71 ms
12,160 KB
testcase_18 AC 159 ms
26,112 KB
testcase_19 AC 162 ms
25,984 KB
testcase_20 AC 160 ms
25,984 KB
testcase_21 AC 165 ms
26,112 KB
testcase_22 AC 168 ms
25,984 KB
testcase_23 AC 171 ms
26,112 KB
testcase_24 AC 72 ms
12,288 KB
testcase_25 AC 70 ms
12,160 KB
testcase_26 AC 72 ms
12,288 KB
testcase_27 AC 69 ms
12,288 KB
testcase_28 AC 70 ms
12,416 KB
testcase_29 AC 70 ms
12,288 KB
testcase_30 AC 70 ms
12,288 KB
testcase_31 AC 69 ms
12,160 KB
testcase_32 AC 71 ms
12,288 KB
testcase_33 AC 69 ms
12,288 KB
testcase_34 AC 134 ms
22,784 KB
testcase_35 AC 92 ms
14,976 KB
testcase_36 AC 129 ms
21,632 KB
testcase_37 AC 127 ms
20,096 KB
testcase_38 AC 106 ms
17,152 KB
testcase_39 AC 93 ms
15,744 KB
testcase_40 AC 101 ms
16,384 KB
testcase_41 AC 86 ms
14,208 KB
testcase_42 AC 119 ms
20,096 KB
testcase_43 AC 126 ms
21,248 KB
testcase_44 AC 162 ms
25,728 KB
testcase_45 AC 164 ms
25,728 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:50: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

N, M, P = gets.split.map(&:to_i)
A = gets.split.map(&:to_i)
AM = A.max

values = Array.new(Math.log2(M).ceil + 10, 0)

A.each do |a|
  cost = 1
  e = a

  while e % P == 0
    e /= P
    cost += 1
  end

  next if e == 1

  if values[cost] < e
    values[cost] = e
  end
end

L = Math.log2(M).ceil ** 2 + 10
dp = Array.new(L + 1, 0)
dp[0] = 1

values.each.with_index do |e, cost|
  next if e == 0

  0.upto(L) do |i|
    next if dp[i] == 0
    next if dp[i] > M

    nv = i + cost
    x = dp[i] * e

    if dp[nv] < x
      dp[nv] = x
    end
  end
end

0.upto(L) do |cost|
  if dp[cost] * AM > M
    puts cost + 1
    exit
  end
end

puts -1
0