結果

問題 No.27 板の準備
ユーザー finefine
提出日時 2017-01-09 19:10:36
言語 Ruby
(3.3.0)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 539 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-06-08 00:35:06
合計ジャッジ時間 2,969 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,160 KB
testcase_01 AC 87 ms
12,160 KB
testcase_02 AC 88 ms
12,288 KB
testcase_03 AC 87 ms
12,160 KB
testcase_04 AC 132 ms
12,544 KB
testcase_05 AC 130 ms
12,544 KB
testcase_06 AC 132 ms
12,544 KB
testcase_07 AC 130 ms
12,544 KB
testcase_08 AC 129 ms
12,544 KB
testcase_09 AC 130 ms
12,672 KB
testcase_10 AC 130 ms
12,672 KB
testcase_11 AC 128 ms
12,672 KB
testcase_12 AC 125 ms
12,672 KB
testcase_13 AC 126 ms
12,544 KB
testcase_14 AC 125 ms
12,544 KB
testcase_15 AC 127 ms
12,672 KB
testcase_16 AC 130 ms
12,672 KB
testcase_17 AC 131 ms
12,672 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

v = gets.split.map(&:to_i).uniq.sort
if v.size != 4
    p 4
    exit
end
ans = 1000
3.upto(30) do |c|  
    2.upto(c - 1) do |b|
        1.upto(b - 1) do |a|
            dp = Array.new(31, 1000)
            dp[0] = 0
            [a, b, c].each do |x|
                1.upto(30) do |i|
                    dp[i] = [dp[i], dp[i - x] + 1].min if i >= x
                end
            end
            tmp = 0
            v.each do |x|
                tmp += dp[x]
            end
            ans = [ans, tmp].min
        end
    end
end
p ans
0