結果

問題 No.1330 Multiply or Divide
ユーザー yuruhiyayuruhiya
提出日時 2021-01-09 15:50:26
言語 Crystal
(1.11.2)
結果
AC  
実行時間 782 ms / 2,000 ms
コード長 648 bytes
コンパイル時間 11,241 ms
コンパイル使用メモリ 296,156 KB
実行使用メモリ 31,680 KB
最終ジャッジ日時 2024-06-30 21:52:53
合計ジャッジ時間 20,893 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 739 ms
29,964 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 50 ms
30,744 KB
testcase_07 AC 782 ms
30,912 KB
testcase_08 AC 735 ms
31,476 KB
testcase_09 AC 729 ms
29,164 KB
testcase_10 AC 729 ms
30,692 KB
testcase_11 AC 740 ms
30,960 KB
testcase_12 AC 731 ms
30,072 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 59 ms
31,348 KB
testcase_19 AC 61 ms
30,084 KB
testcase_20 AC 59 ms
31,680 KB
testcase_21 AC 60 ms
29,544 KB
testcase_22 AC 60 ms
31,516 KB
testcase_23 AC 743 ms
30,800 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 1 ms
6,940 KB
testcase_28 AC 1 ms
6,940 KB
testcase_29 AC 1 ms
6,940 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 2 ms
6,944 KB
testcase_34 AC 43 ms
22,760 KB
testcase_35 AC 14 ms
8,192 KB
testcase_36 AC 36 ms
21,332 KB
testcase_37 AC 34 ms
19,832 KB
testcase_38 AC 24 ms
14,224 KB
testcase_39 AC 18 ms
11,548 KB
testcase_40 AC 19 ms
10,880 KB
testcase_41 AC 10 ms
7,040 KB
testcase_42 AC 32 ms
17,284 KB
testcase_43 AC 36 ms
21,020 KB
testcase_44 AC 727 ms
30,332 KB
testcase_45 AC 734 ms
30,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

lib C
  fun strtoll(s : UInt8*, p : UInt8**, b : Int32) : Int64
end

class String
  def to_i64
    C.strtoll(self, nil, 10)
  end
end

n, m, k = read_line.split.map(&.to_i64)
a = read_line.split.map(&.to_i64)
b, cnt = a.map { |i|
  c = 1
  while i % k == 0
    i //= k
    c += 1
  end
  [i, c]
}.transpose

if a.max > m
  puts 1
  exit
end

if b.max == 1
  puts -1
  exit
end

goal = m // a.max + 1
MAX_X = 500
dp = [0] * MAX_X
dp[0] = 1
(0...MAX_X).each do |x|
  (0...n).each do |i|
    if dp[x] < goal && x + cnt[i] < MAX_X
      dp[x + cnt[i]] = {dp[x + cnt[i]], dp[x] * b[i]}.max
    end
  end
end
puts dp.index { |i| i >= goal }.not_nil! + 1
0