結果

問題 No.27 板の準備
ユーザー 👑 rin204rin204
提出日時 2022-07-04 16:19:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 107 ms / 5,000 ms
コード長 425 bytes
コンパイル時間 668 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 76,304 KB
最終ジャッジ日時 2024-05-08 05:45:52
合計ジャッジ時間 3,263 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
76,280 KB
testcase_01 AC 100 ms
76,072 KB
testcase_02 AC 105 ms
75,988 KB
testcase_03 AC 103 ms
76,304 KB
testcase_04 AC 104 ms
75,964 KB
testcase_05 AC 101 ms
75,960 KB
testcase_06 AC 100 ms
76,060 KB
testcase_07 AC 101 ms
76,300 KB
testcase_08 AC 101 ms
76,008 KB
testcase_09 AC 101 ms
76,084 KB
testcase_10 AC 100 ms
75,964 KB
testcase_11 AC 101 ms
76,008 KB
testcase_12 AC 102 ms
76,120 KB
testcase_13 AC 101 ms
75,692 KB
testcase_14 AC 103 ms
75,808 KB
testcase_15 AC 102 ms
75,756 KB
testcase_16 AC 102 ms
75,968 KB
testcase_17 AC 107 ms
76,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

V = list(map(int, input().split()))
ans = 1 << 30
for a in range(1, 31):
    for b in range(1, 31):
        for c in range(1, 31):
            dp = [1 << 30] * 31
            dp[0] = 0
            for x in [a, b, c]:
                for i in range(x, 31):
                    dp[i] = min(dp[i], dp[i - x] + 1)
            tot = 0
            for v in V:
                tot += dp[v]
            ans = min(ans, tot)
print(ans)
0