結果

問題 No.1330 Multiply or Divide
ユーザー yuruhiyayuruhiya
提出日時 2021-01-09 15:42:25
言語 Crystal
(1.11.2)
結果
WA  
実行時間 -
コード長 593 bytes
コンパイル時間 11,495 ms
コンパイル使用メモリ 296,032 KB
実行使用メモリ 31,332 KB
最終ジャッジ日時 2024-06-30 21:52:15
合計ジャッジ時間 16,212 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 153 ms
29,388 KB
testcase_02 WA -
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 49 ms
30,876 KB
testcase_07 RE -
testcase_08 AC 145 ms
29,200 KB
testcase_09 AC 141 ms
29,148 KB
testcase_10 AC 146 ms
29,236 KB
testcase_11 AC 148 ms
29,252 KB
testcase_12 AC 142 ms
29,220 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 155 ms
29,252 KB
testcase_19 AC 153 ms
29,148 KB
testcase_20 AC 155 ms
29,188 KB
testcase_21 AC 155 ms
29,156 KB
testcase_22 AC 154 ms
29,220 KB
testcase_23 AC 156 ms
30,228 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 2 ms
6,940 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 2 ms
6,944 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 2 ms
6,944 KB
testcase_33 AC 1 ms
6,944 KB
testcase_34 AC 113 ms
23,680 KB
testcase_35 AC 34 ms
8,192 KB
testcase_36 AC 102 ms
20,860 KB
testcase_37 AC 90 ms
18,604 KB
testcase_38 AC 59 ms
12,544 KB
testcase_39 AC 42 ms
10,240 KB
testcase_40 AC 48 ms
11,008 KB
testcase_41 AC 26 ms
7,040 KB
testcase_42 AC 84 ms
18,600 KB
testcase_43 AC 98 ms
21,748 KB
testcase_44 AC 153 ms
30,720 KB
testcase_45 AC 151 ms
31,332 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 b.max == 1
  puts -1
  exit
end

goal = m // a.max + 1
dp = [0] * 64
dp[0] = 1
(0...64).each do |x|
  (0...n).each do |i|
    if dp[x] < goal && x + cnt[i] < 64
      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