結果

問題 No.27 板の準備
ユーザー wotsushiwotsushi
提出日時 2017-04-01 21:51:33
言語 Ruby
(3.3.0)
結果
AC  
実行時間 454 ms / 5,000 ms
コード長 498 bytes
コンパイル時間 58 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 38,368 KB
最終ジャッジ日時 2024-06-08 00:36:06
合計ジャッジ時間 6,447 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
14,080 KB
testcase_01 AC 160 ms
18,816 KB
testcase_02 AC 291 ms
29,184 KB
testcase_03 AC 156 ms
18,560 KB
testcase_04 AC 338 ms
34,816 KB
testcase_05 AC 307 ms
30,080 KB
testcase_06 AC 386 ms
34,816 KB
testcase_07 AC 380 ms
34,432 KB
testcase_08 AC 454 ms
38,368 KB
testcase_09 AC 411 ms
34,708 KB
testcase_10 AC 340 ms
34,688 KB
testcase_11 AC 320 ms
31,488 KB
testcase_12 AC 347 ms
34,816 KB
testcase_13 AC 310 ms
30,720 KB
testcase_14 AC 271 ms
28,544 KB
testcase_15 AC 347 ms
34,688 KB
testcase_16 AC 220 ms
25,600 KB
testcase_17 AC 336 ms
31,488 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

V0, V1, V2, V3 = gets.split.map(&:to_i)
D = [*1..30]
def f(v, a, b, c)
  @dp ||= {}
  @dp[[v, a, b, c]] ||= if v < 0
                          Float::INFINITY
                        elsif v == 0
                          0
                        else
                          [f(v - a, a, b, c), f(v - b, a, b, c), f(v - c, a, b, c)].min + 1
                        end
end
ans = D.combination(3).map {|a, b, c|
  f(V0, a, b, c) + f(V1, a, b, c) + f(V2, a, b, c) + f(V3, a, b, c)
}.min
puts ans
0