結果

問題 No.27 板の準備
ユーザー wotsushiwotsushi
提出日時 2017-04-01 21:51:33
言語 Ruby
(3.4.1)
結果
AC  
実行時間 472 ms / 5,000 ms
コード長 498 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 38,300 KB
最終ジャッジ日時 2024-12-26 12:57:26
合計ジャッジ時間 7,099 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
13,952 KB
testcase_01 AC 178 ms
18,688 KB
testcase_02 AC 298 ms
28,800 KB
testcase_03 AC 171 ms
18,432 KB
testcase_04 AC 373 ms
34,688 KB
testcase_05 AC 327 ms
30,080 KB
testcase_06 AC 405 ms
34,560 KB
testcase_07 AC 409 ms
34,432 KB
testcase_08 AC 472 ms
38,300 KB
testcase_09 AC 423 ms
34,448 KB
testcase_10 AC 347 ms
34,560 KB
testcase_11 AC 340 ms
31,488 KB
testcase_12 AC 363 ms
34,560 KB
testcase_13 AC 316 ms
30,592 KB
testcase_14 AC 296 ms
28,416 KB
testcase_15 AC 371 ms
34,688 KB
testcase_16 AC 232 ms
25,216 KB
testcase_17 AC 349 ms
31,232 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