結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
57,472 KB
testcase_01 AC 40 ms
51,996 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 39 ms
52,352 KB
testcase_04 AC 50 ms
62,960 KB
testcase_05 AC 37 ms
52,096 KB
testcase_06 AC 47 ms
61,824 KB
testcase_07 AC 50 ms
63,872 KB
testcase_08 AC 95 ms
76,612 KB
testcase_09 AC 209 ms
76,232 KB
testcase_10 AC 167 ms
76,336 KB
testcase_11 AC 480 ms
76,600 KB
testcase_12 AC 348 ms
76,288 KB
testcase_13 AC 1,135 ms
76,416 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