結果

問題 No.472 平均順位
ユーザー rlangevinrlangevin
提出日時 2023-10-20 12:24:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,731 ms / 2,000 ms
コード長 433 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 85,464 KB
最終ジャッジ日時 2024-09-20 07:55:19
合計ジャッジ時間 8,154 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,224 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 38 ms
51,584 KB
testcase_04 AC 49 ms
62,336 KB
testcase_05 AC 36 ms
52,096 KB
testcase_06 AC 45 ms
59,264 KB
testcase_07 AC 47 ms
61,184 KB
testcase_08 AC 67 ms
67,724 KB
testcase_09 AC 114 ms
75,776 KB
testcase_10 AC 93 ms
76,056 KB
testcase_11 AC 216 ms
75,988 KB
testcase_12 AC 177 ms
76,248 KB
testcase_13 AC 473 ms
76,288 KB
testcase_14 AC 1,549 ms
82,048 KB
testcase_15 AC 487 ms
77,056 KB
testcase_16 AC 1,731 ms
83,968 KB
testcase_17 AC 1,550 ms
85,464 KB
testcase_18 AC 168 ms
76,416 KB
testcase_19 AC 274 ms
76,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, P = map(int, input().split())
inf = 10 ** 9
pre = [inf] * (P + 1)
pre[0] = 0
for _ in range(N):
    dp = [inf] * (P + 1)
    a, b, c = map(int, input().split())
    L = [a, b, c, 1]
    for j in range(4):
        v = L[j]
        for i in range(P + 1):
            if i - j < 0:
                continue
            dp[i] = min(dp[i], pre[i - j] + v)

    pre, dp = dp, pre

print(pre[-1]/N)
0