結果

問題 No.472 平均順位
ユーザー vwxyzvwxyz
提出日時 2022-04-05 22:01:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 404 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 17,696 KB
最終ジャッジ日時 2024-05-05 10:22:26
合計ジャッジ時間 4,992 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
16,384 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 27 ms
10,880 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 34 ms
10,752 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 66 ms
10,752 KB
testcase_08 AC 763 ms
10,624 KB
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline

N,P=map(int,readline().split())
inf=1<<30
dp=[inf]*(P+1)
dp[0]=0
for _ in range(N):
    a,b,c=map(int,readline().split())
    for i in range(P,-1,-1):
        dp[i]+=a
        if 0<=i-1:
            dp[i]=min(dp[i],dp[i-1]+b)
        if 0<=i-2:
            dp[i]=min(dp[i],dp[i-2]+c)
        if 0<=i-3:
            dp[i]=min(dp[i],dp[i-3]+1)
ans=dp[P]/N
print(ans)
0