結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 178 ms
30,760 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 51 ms
30,208 KB
testcase_07 RE -
testcase_08 AC 171 ms
30,280 KB
testcase_09 AC 161 ms
31,404 KB
testcase_10 AC 167 ms
30,692 KB
testcase_11 AC 173 ms
31,020 KB
testcase_12 AC 170 ms
29,980 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,940 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 58 ms
31,984 KB
testcase_19 AC 61 ms
31,536 KB
testcase_20 AC 56 ms
31,144 KB
testcase_21 AC 59 ms
29,640 KB
testcase_22 AC 57 ms
30,768 KB
testcase_23 AC 181 ms
30,104 KB
testcase_24 AC 2 ms
6,944 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,944 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 2 ms
6,944 KB
testcase_33 AC 2 ms
6,948 KB
testcase_34 AC 44 ms
22,876 KB
testcase_35 AC 14 ms
8,192 KB
testcase_36 AC 38 ms
21,544 KB
testcase_37 AC 32 ms
19,444 KB
testcase_38 AC 24 ms
12,544 KB
testcase_39 AC 18 ms
10,752 KB
testcase_40 AC 19 ms
11,700 KB
testcase_41 AC 11 ms
7,040 KB
testcase_42 AC 30 ms
18,552 KB
testcase_43 AC 36 ms
20,608 KB
testcase_44 AC 168 ms
29,664 KB
testcase_45 AC 168 ms
31,336 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
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