結果

問題 No.23 技の選択
ユーザー simansiman
提出日時 2021-04-07 03:13:03
言語 Ruby
(3.3.0)
結果
AC  
実行時間 84 ms / 5,000 ms
コード長 332 bytes
コンパイル時間 502 ms
コンパイル使用メモリ 11,332 KB
実行使用メモリ 15,324 KB
最終ジャッジ日時 2023-09-03 14:59:46
合計ジャッジ時間 5,323 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
15,144 KB
testcase_01 AC 77 ms
15,272 KB
testcase_02 AC 78 ms
15,280 KB
testcase_03 AC 79 ms
15,224 KB
testcase_04 AC 79 ms
15,304 KB
testcase_05 AC 78 ms
15,300 KB
testcase_06 AC 79 ms
15,132 KB
testcase_07 AC 79 ms
15,044 KB
testcase_08 AC 84 ms
15,108 KB
testcase_09 AC 82 ms
15,160 KB
testcase_10 AC 81 ms
15,272 KB
testcase_11 AC 79 ms
15,012 KB
testcase_12 AC 81 ms
15,240 KB
testcase_13 AC 80 ms
15,088 KB
testcase_14 AC 78 ms
15,004 KB
testcase_15 AC 78 ms
15,116 KB
testcase_16 AC 78 ms
15,240 KB
testcase_17 AC 78 ms
15,276 KB
testcase_18 AC 79 ms
15,120 KB
testcase_19 AC 81 ms
15,236 KB
testcase_20 AC 79 ms
15,272 KB
testcase_21 AC 79 ms
15,112 KB
testcase_22 AC 80 ms
15,008 KB
testcase_23 AC 79 ms
15,300 KB
testcase_24 AC 77 ms
15,172 KB
testcase_25 AC 81 ms
15,244 KB
testcase_26 AC 79 ms
15,116 KB
testcase_27 AC 81 ms
15,140 KB
testcase_28 AC 83 ms
15,040 KB
testcase_29 AC 82 ms
15,196 KB
testcase_30 AC 81 ms
15,252 KB
testcase_31 AC 81 ms
15,120 KB
testcase_32 AC 82 ms
15,324 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

H, A, D = gets.split.map(&:to_i)

dp = Array.new(H + 1, Float::INFINITY)
dp[0] = 0.0

1.upto(H) do |h|
  if h - A >= 0
    dp[h] = dp[h - A] + 1.0
  else
    dp[h] = dp[0] + 1.0
  end

  if h - D >= 0
    dp[h] = dp[h - D] + 1.5 if dp[h] > dp[h - D] + 1.5
  else
    dp[h] = dp[0] + 1.5 if dp[h] > dp[0] + 1.5
  end
end

puts dp[H]
0