結果

問題 No.472 平均順位
ユーザー asumo0729asumo0729
提出日時 2020-12-16 13:45:23
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 534 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 81,752 KB
実行使用メモリ 83,208 KB
最終ジャッジ日時 2024-09-20 04:58:37
合計ジャッジ時間 6,600 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
59,744 KB
testcase_01 AC 35 ms
52,024 KB
testcase_02 AC 36 ms
52,456 KB
testcase_03 AC 35 ms
53,320 KB
testcase_04 AC 48 ms
64,168 KB
testcase_05 AC 37 ms
53,228 KB
testcase_06 AC 46 ms
62,196 KB
testcase_07 AC 51 ms
65,004 KB
testcase_08 AC 94 ms
76,564 KB
testcase_09 AC 211 ms
76,584 KB
testcase_10 AC 160 ms
76,188 KB
testcase_11 AC 480 ms
76,612 KB
testcase_12 AC 353 ms
76,320 KB
testcase_13 AC 1,122 ms
76,880 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

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()
    now.append(1)
    for i in  range(p,-1,-1):
        dp[i]+=now[0]
        for j in range(4):
            if i-j>=0:
                dp[i]=min(dp[i-j]+now[j],dp[i])
print(dp[-1]/n)
0