結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,816 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 40 ms
51,712 KB
testcase_03 AC 40 ms
51,456 KB
testcase_04 AC 54 ms
61,952 KB
testcase_05 AC 36 ms
52,096 KB
testcase_06 AC 45 ms
60,968 KB
testcase_07 AC 67 ms
67,968 KB
testcase_08 AC 107 ms
76,032 KB
testcase_09 AC 122 ms
76,544 KB
testcase_10 AC 115 ms
76,496 KB
testcase_11 AC 182 ms
76,416 KB
testcase_12 AC 153 ms
76,544 KB
testcase_13 AC 318 ms
76,400 KB
testcase_14 AC 835 ms
76,700 KB
testcase_15 AC 358 ms
76,420 KB
testcase_16 AC 944 ms
76,488 KB
testcase_17 AC 831 ms
76,416 KB
testcase_18 AC 146 ms
76,140 KB
testcase_19 AC 203 ms
76,244 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