結果

問題 No.27 板の準備
ユーザー wotsushiwotsushi
提出日時 2017-04-01 21:47:30
言語 Ruby
(3.3.0)
結果
AC  
実行時間 2,615 ms / 5,000 ms
コード長 497 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 196,572 KB
最終ジャッジ日時 2024-07-07 19:10:39
合計ジャッジ時間 28,778 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 408 ms
31,872 KB
testcase_01 AC 546 ms
57,820 KB
testcase_02 AC 1,398 ms
108,216 KB
testcase_03 AC 541 ms
57,776 KB
testcase_04 AC 1,672 ms
127,664 KB
testcase_05 AC 1,462 ms
123,968 KB
testcase_06 AC 1,961 ms
143,032 KB
testcase_07 AC 1,923 ms
138,256 KB
testcase_08 AC 2,615 ms
196,572 KB
testcase_09 AC 2,032 ms
146,916 KB
testcase_10 AC 1,686 ms
127,580 KB
testcase_11 AC 1,596 ms
127,340 KB
testcase_12 AC 1,730 ms
132,216 KB
testcase_13 AC 1,487 ms
124,696 KB
testcase_14 AC 1,272 ms
105,864 KB
testcase_15 AC 1,693 ms
128,148 KB
testcase_16 AC 1,009 ms
102,872 KB
testcase_17 AC 1,686 ms
127,108 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.product(D, D).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