結果

問題 No.472 平均順位
ユーザー roarisroaris
提出日時 2019-12-16 15:41:56
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 546 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 663,844 KB
最終ジャッジ日時 2024-07-02 19:46:22
合計ジャッジ時間 13,576 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,200 KB
testcase_01 AC 36 ms
53,560 KB
testcase_02 AC 35 ms
52,616 KB
testcase_03 AC 35 ms
53,132 KB
testcase_04 AC 61 ms
71,672 KB
testcase_05 AC 34 ms
52,880 KB
testcase_06 AC 48 ms
65,172 KB
testcase_07 AC 75 ms
76,648 KB
testcase_08 AC 101 ms
79,992 KB
testcase_09 AC 176 ms
92,488 KB
testcase_10 AC 151 ms
87,104 KB
testcase_11 AC 341 ms
127,376 KB
testcase_12 AC 279 ms
111,896 KB
testcase_13 AC 767 ms
209,048 KB
testcase_14 TLE -
testcase_15 AC 884 ms
208,372 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 256 ms
111,060 KB
testcase_19 AC 420 ms
139,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, P = map(int, input().split())
abc = [tuple(map(int, input().split())) for _ in range(N)]
dp = [[10**18]*(P+1) for _ in range(N+1)]
dp[0][0] = 0

for i in range(N):
    ai, bi, ci = abc[i]
    
    for j in range(P+1):
        dp[i+1][j] = min(dp[i+1][j], dp[i][j]+ai)
        
        if j+1<=P:
            dp[i+1][j+1] = min(dp[i+1][j+1], dp[i][j]+bi)
        
        if j+2<=P:
            dp[i+1][j+2] = min(dp[i+1][j+2], dp[i][j]+ci)
        
        if j+3<=P:
            dp[i+1][j+3] = min(dp[i+1][j+3], dp[i][j]+1)

print(dp[N][P]/N)
0