結果

問題 No.472 平均順位
ユーザー asumo0729asumo0729
提出日時 2020-12-16 13:27:12
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 794 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 848,736 KB
最終ジャッジ日時 2024-09-20 04:53:42
合計ジャッジ時間 6,577 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,348 KB
testcase_01 AC 35 ms
53,912 KB
testcase_02 AC 35 ms
53,036 KB
testcase_03 AC 36 ms
52,724 KB
testcase_04 AC 85 ms
76,372 KB
testcase_05 AC 37 ms
53,232 KB
testcase_06 AC 65 ms
71,640 KB
testcase_07 AC 85 ms
76,520 KB
testcase_08 AC 139 ms
81,472 KB
testcase_09 AC 280 ms
110,088 KB
testcase_10 AC 385 ms
129,520 KB
testcase_11 AC 776 ms
242,968 KB
testcase_12 AC 693 ms
219,520 KB
testcase_13 MLE -
testcase_14 -- -
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()
a=[]
for _ in range(n):
    now=tp()
    a.append((now))

inf=float('INF')
dp=[[inf for _ in range(3*n+1)]for _ in range(n)]
dp[0][0]=a[0][0]
dp[0][1]=a[0][1]
dp[0][2]=a[0][2]
dp[0][3]=1

for i in range(1,n):
    for j in range(3*n+1):
        dp[i][j]=min(dp[i][j],dp[i-1][j]+a[i][0])
        if 0<=j-1:
            dp[i][j]=min(dp[i][j],dp[i-1][j-1]+a[i][1])
        if 0<=j-2:
            dp[i][j]=min(dp[i][j],dp[i-1][j-2]+a[i][2])
        if 0<=j-3:
            dp[i][j]=min(dp[i][j],dp[i-1][j-3]+1)

print(dp[-1][p]/n)





0