結果

問題 No.27 板の準備
ユーザー letrangerjpletrangerjp
提出日時 2017-06-13 14:18:30
言語 Ruby
(3.3.0)
結果
AC  
実行時間 486 ms / 5,000 ms
コード長 288 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 42,512 KB
最終ジャッジ日時 2024-06-08 00:38:37
合計ジャッジ時間 6,589 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
14,464 KB
testcase_01 AC 156 ms
20,352 KB
testcase_02 AC 297 ms
30,592 KB
testcase_03 AC 150 ms
19,712 KB
testcase_04 AC 340 ms
36,992 KB
testcase_05 AC 311 ms
33,920 KB
testcase_06 AC 422 ms
39,464 KB
testcase_07 AC 396 ms
38,852 KB
testcase_08 AC 486 ms
42,512 KB
testcase_09 AC 417 ms
40,868 KB
testcase_10 AC 353 ms
39,680 KB
testcase_11 AC 341 ms
33,792 KB
testcase_12 AC 372 ms
39,680 KB
testcase_13 AC 331 ms
33,152 KB
testcase_14 AC 274 ms
30,464 KB
testcase_15 AC 359 ms
36,864 KB
testcase_16 AC 219 ms
28,032 KB
testcase_17 AC 359 ms
33,408 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

V = gets.split.take(4).map(&:to_i)

$dp = {}
def f(v, a, b, c)
  $dp[[v,a,b,c]] ||= if v < 0
    1.0/0
  elsif v == 0
    0
  else
    [a, b, c].map{|d| f(v - d, a, b, c) }.min + 1
  end
end

p [*1..30].combination(3).inject(1.0/0){|r, (a, b, c)|
  [r, V.map{|v|f(v, a, b, c)}.sum].min
}
0