結果

問題 No.472 平均順位
ユーザー titiatitia
提出日時 2024-01-08 01:40:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,011 ms / 2,000 ms
コード長 526 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 81,948 KB
最終ジャッジ日時 2024-09-27 19:35:20
合計ジャッジ時間 6,128 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,828 KB
testcase_01 AC 32 ms
53,176 KB
testcase_02 AC 32 ms
52,248 KB
testcase_03 AC 32 ms
52,212 KB
testcase_04 AC 54 ms
67,872 KB
testcase_05 AC 33 ms
52,620 KB
testcase_06 AC 43 ms
62,868 KB
testcase_07 AC 60 ms
72,700 KB
testcase_08 AC 75 ms
76,424 KB
testcase_09 AC 104 ms
75,712 KB
testcase_10 AC 103 ms
76,904 KB
testcase_11 AC 182 ms
76,076 KB
testcase_12 AC 153 ms
76,376 KB
testcase_13 AC 440 ms
76,944 KB
testcase_14 AC 919 ms
80,012 KB
testcase_15 AC 417 ms
76,452 KB
testcase_16 AC 1,011 ms
81,548 KB
testcase_17 AC 699 ms
81,948 KB
testcase_18 AC 131 ms
76,212 KB
testcase_19 AC 236 ms
76,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,P=map(int,input().split())

DP=[1<<30]*(P+1)
DP[0]=0

for i in range(N):
    a,b,c=map(int,input().split())
    NDP=[1<<30]*(P+1)

    for j in range(P+1):
        if DP[j]>=(1<<30):
            continue

        if j<=P:
            NDP[j]=min(NDP[j],DP[j]+a)

        if j+1<=P:
            NDP[j+1]=min(NDP[j+1],DP[j]+b)

        if j+2<=P:
            NDP[j+2]=min(NDP[j+2],DP[j]+c)

        if j+3<=P:
            NDP[j+3]=min(NDP[j+3],DP[j]+1)
    DP=NDP
        
print(DP[P]/N)
0