結果

問題 No.27 板の準備
ユーザー しらっ亭しらっ亭
提出日時 2015-08-15 03:50:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 458 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-18 09:33:15
合計ジャッジ時間 4,432 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 181 ms
10,624 KB
testcase_03 AC 32 ms
10,752 KB
testcase_04 AC 173 ms
10,624 KB
testcase_05 AC 105 ms
10,752 KB
testcase_06 AC 242 ms
10,752 KB
testcase_07 AC 364 ms
10,752 KB
testcase_08 AC 482 ms
10,752 KB
testcase_09 AC 414 ms
10,752 KB
testcase_10 AC 280 ms
10,752 KB
testcase_11 AC 134 ms
10,752 KB
testcase_12 AC 209 ms
10,752 KB
testcase_13 AC 150 ms
10,752 KB
testcase_14 AC 88 ms
10,752 KB
testcase_15 AC 227 ms
10,752 KB
testcase_16 AC 33 ms
10,624 KB
testcase_17 AC 299 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import combinations


def c(v, a):
    dp = [float('inf')] * (v + max(a))
    dp[0] = 0
    for i in range(v):
        for b in a:
            dp[i + b] = min(dp[i + b], dp[i] + 1)
    return dp[v]


def solve():
    V = list(map(int, input().split()))

    mi = float('inf')
    for ijk in combinations(range(1, max(V) + 1), 3):
        mi = min(mi, sum(c(V[l], ijk) for l in range(4)))
    print(mi)


if __name__ == '__main__':
    solve()
0