結果

問題 No.472 平均順位
ユーザー asumo0729asumo0729
提出日時 2020-12-16 13:49:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,621 ms / 2,000 ms
コード長 602 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,160 KB
最終ジャッジ日時 2024-09-20 05:01:09
合計ジャッジ時間 8,290 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 42 ms
52,352 KB
testcase_03 AC 41 ms
52,224 KB
testcase_04 AC 56 ms
62,720 KB
testcase_05 AC 38 ms
52,352 KB
testcase_06 AC 49 ms
61,952 KB
testcase_07 AC 71 ms
71,808 KB
testcase_08 AC 103 ms
76,672 KB
testcase_09 AC 145 ms
76,508 KB
testcase_10 AC 120 ms
77,160 KB
testcase_11 AC 269 ms
76,680 KB
testcase_12 AC 229 ms
76,608 KB
testcase_13 AC 479 ms
76,728 KB
testcase_14 AC 1,485 ms
76,600 KB
testcase_15 AC 466 ms
76,548 KB
testcase_16 AC 1,590 ms
76,640 KB
testcase_17 AC 1,621 ms
76,672 KB
testcase_18 AC 184 ms
77,108 KB
testcase_19 AC 285 ms
76,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
stdin=sys.stdin

ip=lambda: int(sp())
fp=lambda: float(sp())
lp=lambda:list(map(int,stdin.readline().split()))
tp=lambda:tuple(map(int,stdin.readline().split()))
sp=lambda:stdin.readline().rstrip()
yp=lambda:print('Yes')
np=lambda:print('No')

n,p=lp()
inf=float('inf')
dp=[inf for _ in range(p+1)]
dp[0]=0
for _ in range(n):
    now=lp()
    for i in  range(p,-1,-1):
        dp[i]+=now[0]
        if i-1>=0:
            dp[i]=min(dp[i-1]+now[1],dp[i])
        if i-2>=0:
            dp[i]=min(dp[i-2]+now[2],dp[i])
        if i-3>=0:
            dp[i]=min(dp[i-3]+1,dp[i])
print(dp[-1]/n)
0