結果

問題 No.472 平均順位
ユーザー pluto77pluto77
提出日時 2018-01-05 13:35:56
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 386 bytes
コンパイル時間 412 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-06-02 09:45:06
合計ジャッジ時間 7,427 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
11,776 KB
testcase_01 AC 9 ms
6,144 KB
testcase_02 AC 9 ms
6,272 KB
testcase_03 AC 8 ms
6,272 KB
testcase_04 AC 14 ms
6,144 KB
testcase_05 AC 9 ms
6,272 KB
testcase_06 AC 11 ms
6,272 KB
testcase_07 AC 33 ms
6,144 KB
testcase_08 AC 439 ms
6,400 KB
testcase_09 TLE -
testcase_10 AC 1,242 ms
6,400 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki_472

INF=float('inf')
n,p=map(int,raw_input().split())
dp = [INF for i in xrange(p+4)]
for i in xrange(n):
 a,b,c=map(int,raw_input().split())
 if i == 0:
  dp[0]=a
  dp[1]=b
  dp[2]=c
  dp[3]=1 
  continue
 for j in xrange(p,-1,-1):
  dp[j]=dp[j]+a
  if j>0: dp[j]=min(dp[j],dp[j-1]+b)
  if j>1: dp[j]=min(dp[j],dp[j-2]+c)
  if j>2: dp[j]=min(dp[j],dp[j-3]+1)

print 1.0*dp[p]/n
0