結果

問題 No.27 板の準備
ユーザー convexineqconvexineq
提出日時 2020-12-06 04:32:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 5,000 ms
コード長 308 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 76,456 KB
最終ジャッジ日時 2024-09-17 03:09:23
合計ジャッジ時間 2,620 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
76,200 KB
testcase_01 AC 79 ms
75,884 KB
testcase_02 AC 82 ms
76,456 KB
testcase_03 AC 80 ms
76,176 KB
testcase_04 AC 79 ms
75,980 KB
testcase_05 AC 82 ms
76,324 KB
testcase_06 AC 79 ms
75,808 KB
testcase_07 AC 80 ms
75,964 KB
testcase_08 AC 80 ms
76,188 KB
testcase_09 AC 81 ms
76,268 KB
testcase_10 AC 79 ms
75,856 KB
testcase_11 AC 80 ms
75,984 KB
testcase_12 AC 81 ms
75,976 KB
testcase_13 AC 80 ms
75,736 KB
testcase_14 AC 81 ms
75,880 KB
testcase_15 AC 80 ms
76,044 KB
testcase_16 AC 82 ms
76,096 KB
testcase_17 AC 80 ms
75,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

*v, = map(int,input().split())
INF = ans = 10**9
from itertools import product
for lst in product(range(1,31),repeat=3):
    dp = [INF]*31
    dp[0] = 0
    for i in lst:
        for r in range(i,31):
            dp[r] = min(dp[r], 1+dp[r-i])
    res = sum(dp[i] for i in v)
    ans = min(ans,res)
print(ans)
0