結果

問題 No.472 平均順位
ユーザー 👑 rin204rin204
提出日時 2022-07-08 09:47:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 952 ms / 2,000 ms
コード長 419 bytes
コンパイル時間 388 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-06-07 22:22:03
合計ジャッジ時間 6,540 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 38 ms
51,456 KB
testcase_02 AC 38 ms
51,584 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 AC 53 ms
61,824 KB
testcase_05 AC 39 ms
51,712 KB
testcase_06 AC 49 ms
60,032 KB
testcase_07 AC 67 ms
68,352 KB
testcase_08 AC 97 ms
75,904 KB
testcase_09 AC 128 ms
76,160 KB
testcase_10 AC 114 ms
76,416 KB
testcase_11 AC 188 ms
76,500 KB
testcase_12 AC 160 ms
76,032 KB
testcase_13 AC 333 ms
76,672 KB
testcase_14 AC 854 ms
76,160 KB
testcase_15 AC 371 ms
76,288 KB
testcase_16 AC 952 ms
76,672 KB
testcase_17 AC 826 ms
76,288 KB
testcase_18 AC 146 ms
76,544 KB
testcase_19 AC 208 ms
76,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, p = map(int, input().split())
dp = [1 << 30] * (p + 1)
dp[0] = 0
for _ in range(n):
    a, b, c = map(int, input().split())
    for i in range(p, -1, -1):
        mi = dp[i] + a
        if i >= 1:
            mi = min(mi, dp[i - 1] + b)
            if i >= 2:
                mi = min(mi, dp[i - 2] + c)
                if i >= 3:
                    mi = min(mi, dp[i - 3] + 1)
        dp[i] = mi

print(dp[-1] / n)
0