結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 31 ms
10,496 KB
testcase_02 AC 160 ms
10,752 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 82 ms
10,624 KB
testcase_05 AC 52 ms
10,496 KB
testcase_06 AC 91 ms
10,624 KB
testcase_07 AC 148 ms
10,496 KB
testcase_08 AC 173 ms
10,624 KB
testcase_09 AC 160 ms
10,752 KB
testcase_10 AC 140 ms
10,624 KB
testcase_11 AC 71 ms
10,496 KB
testcase_12 AC 99 ms
10,624 KB
testcase_13 AC 90 ms
10,496 KB
testcase_14 AC 61 ms
10,496 KB
testcase_15 AC 144 ms
10,496 KB
testcase_16 AC 34 ms
10,752 KB
testcase_17 AC 168 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

v=list(map(int, input().split()))
m=max(v)
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