結果

問題 No.27 板の準備
ユーザー chocoruskchocorusk
提出日時 2020-09-08 11:14:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 189 ms / 5,000 ms
コード長 332 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-05-07 00:34:38
合計ジャッジ時間 4,116 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 177 ms
10,752 KB
testcase_01 AC 182 ms
10,624 KB
testcase_02 AC 180 ms
10,752 KB
testcase_03 AC 178 ms
10,624 KB
testcase_04 AC 178 ms
10,752 KB
testcase_05 AC 169 ms
10,752 KB
testcase_06 AC 178 ms
10,752 KB
testcase_07 AC 178 ms
10,752 KB
testcase_08 AC 185 ms
10,752 KB
testcase_09 AC 171 ms
10,752 KB
testcase_10 AC 172 ms
10,624 KB
testcase_11 AC 183 ms
10,624 KB
testcase_12 AC 174 ms
10,624 KB
testcase_13 AC 176 ms
10,624 KB
testcase_14 AC 189 ms
10,624 KB
testcase_15 AC 173 ms
10,624 KB
testcase_16 AC 174 ms
10,752 KB
testcase_17 AC 176 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

v=list(map(int, input().split()))
m=30
INF=1000
ans=INF
import itertools
for a, b, c in itertools.combinations(range(1, m+1), 3):
    dp=[INF]*(m+1)
    dp[0]=0
    for i in range(1, m+1):
        for x in [a, b, c]:
            if i>=x:
                dp[i]=min(dp[i], dp[i-x]+1)
    ans=min(ans, sum(dp[x] for x in v))
print(ans)
0