結果

問題 No.23 技の選択
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-06-05 23:42:11
言語 Ruby
(3.3.0)
結果
AC  
実行時間 88 ms / 5,000 ms
コード長 222 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 11,948 KB
実行使用メモリ 16,256 KB
最終ジャッジ日時 2023-10-23 19:42:59
合計ジャッジ時間 4,282 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
16,080 KB
testcase_01 AC 82 ms
16,080 KB
testcase_02 AC 81 ms
16,080 KB
testcase_03 AC 87 ms
16,256 KB
testcase_04 AC 88 ms
16,256 KB
testcase_05 AC 88 ms
16,256 KB
testcase_06 AC 86 ms
16,248 KB
testcase_07 AC 85 ms
16,080 KB
testcase_08 AC 85 ms
16,232 KB
testcase_09 AC 84 ms
16,080 KB
testcase_10 AC 85 ms
16,228 KB
testcase_11 AC 81 ms
16,080 KB
testcase_12 AC 84 ms
16,080 KB
testcase_13 AC 87 ms
16,252 KB
testcase_14 AC 84 ms
16,224 KB
testcase_15 AC 85 ms
16,236 KB
testcase_16 AC 82 ms
16,080 KB
testcase_17 AC 84 ms
16,080 KB
testcase_18 AC 85 ms
16,232 KB
testcase_19 AC 86 ms
16,252 KB
testcase_20 AC 82 ms
16,080 KB
testcase_21 AC 83 ms
16,080 KB
testcase_22 AC 86 ms
16,236 KB
testcase_23 AC 85 ms
16,080 KB
testcase_24 AC 82 ms
16,080 KB
testcase_25 AC 87 ms
16,256 KB
testcase_26 AC 83 ms
16,080 KB
testcase_27 AC 87 ms
16,252 KB
testcase_28 AC 86 ms
16,240 KB
testcase_29 AC 86 ms
16,244 KB
testcase_30 AC 87 ms
16,256 KB
testcase_31 AC 88 ms
16,256 KB
testcase_32 AC 87 ms
16,248 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

h, a, d = gets.split.map(&:to_i)

dp = Array.new(h + 1, Float::INFINITY)
dp[0] = 0
h.times do |i|
  j = [i + a, h].min
  dp[j] = [dp[j], dp[i] + 1].min

  k = [i + d, h].min
  dp[k] = [dp[k], dp[i] + 1.5].min
end

p dp[h]
0