結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
13,952 KB
testcase_01 AC 146 ms
18,304 KB
testcase_02 AC 278 ms
27,136 KB
testcase_03 AC 142 ms
17,920 KB
testcase_04 AC 320 ms
32,768 KB
testcase_05 AC 292 ms
28,800 KB
testcase_06 AC 372 ms
32,768 KB
testcase_07 AC 372 ms
32,896 KB
testcase_08 AC 459 ms
34,456 KB
testcase_09 AC 398 ms
32,768 KB
testcase_10 AC 361 ms
32,640 KB
testcase_11 AC 316 ms
29,440 KB
testcase_12 AC 335 ms
32,896 KB
testcase_13 AC 299 ms
29,056 KB
testcase_14 AC 251 ms
26,752 KB
testcase_15 AC 355 ms
32,896 KB
testcase_16 AC 204 ms
24,576 KB
testcase_17 AC 324 ms
29,568 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
    9e9
  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(9e9){|r, (a, b, c)|
  [r, V.map{|v|f(v, a, b, c)}.sum].min
}
0