結果

問題 No.472 平均順位
ユーザー soisusoisu
提出日時 2022-09-07 16:26:54
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 532 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,824 KB
実行使用メモリ 741,876 KB
最終ジャッジ日時 2024-05-02 08:47:10
合計ジャッジ時間 7,237 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
59,424 KB
testcase_01 AC 35 ms
52,400 KB
testcase_02 AC 35 ms
51,968 KB
testcase_03 AC 35 ms
52,224 KB
testcase_04 AC 55 ms
64,768 KB
testcase_05 AC 35 ms
52,352 KB
testcase_06 AC 50 ms
63,104 KB
testcase_07 AC 87 ms
76,672 KB
testcase_08 AC 120 ms
80,776 KB
testcase_09 AC 214 ms
94,080 KB
testcase_10 AC 188 ms
88,832 KB
testcase_11 AC 485 ms
173,484 KB
testcase_12 AC 360 ms
128,340 KB
testcase_13 MLE -
testcase_14 MLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)
inf=float('inf')

N,P=map(int,input().split())
A,B,C=[0]*N,[0]*N,[0]*N

for i in range(N):
    A[i],B[i],C[i]=map(int,input().split())

dp=[[inf]*(P+1) for i in range(N+1)]
dp[0][0]=0

for i in range(N):
    for j in range(P+1):
        dp[i+1][j]=dp[i][j]+A[i]
        if 1<=j:
            dp[i+1][j]=min(dp[i+1][j],dp[i][j-1]+B[i])
        if 2<=j:
            dp[i+1][j]=min(dp[i+1][j],dp[i][j-2]+C[i])
        if 3<=j:
            dp[i+1][j]=min(dp[i+1][j],dp[i][j-3]+1)
print(dp[N][P]/N)
0