結果

問題 No.27 板の準備
ユーザー 👑 rin204rin204
提出日時 2022-07-04 16:19:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 5,000 ms
コード長 425 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 76,524 KB
最終ジャッジ日時 2024-12-14 07:02:43
合計ジャッジ時間 2,943 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
76,004 KB
testcase_01 AC 89 ms
76,092 KB
testcase_02 AC 90 ms
76,256 KB
testcase_03 AC 90 ms
76,292 KB
testcase_04 AC 92 ms
75,932 KB
testcase_05 AC 93 ms
76,048 KB
testcase_06 AC 89 ms
76,028 KB
testcase_07 AC 90 ms
75,860 KB
testcase_08 AC 91 ms
76,000 KB
testcase_09 AC 92 ms
76,160 KB
testcase_10 AC 90 ms
75,752 KB
testcase_11 AC 91 ms
76,084 KB
testcase_12 AC 91 ms
76,088 KB
testcase_13 AC 92 ms
76,072 KB
testcase_14 AC 90 ms
76,020 KB
testcase_15 AC 90 ms
76,068 KB
testcase_16 AC 89 ms
76,524 KB
testcase_17 AC 95 ms
76,152 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