結果

問題 No.472 平均順位
ユーザー roiti46roiti46
提出日時 2016-10-11 23:09:35
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 797 ms / 2,000 ms
コード長 459 bytes
コンパイル時間 1,686 ms
コンパイル使用メモリ 77,060 KB
実行使用メモリ 79,744 KB
最終ジャッジ日時 2024-05-09 20:35:48
合計ジャッジ時間 7,540 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
75,648 KB
testcase_01 AC 69 ms
75,524 KB
testcase_02 AC 69 ms
75,408 KB
testcase_03 AC 70 ms
75,520 KB
testcase_04 AC 86 ms
77,696 KB
testcase_05 AC 74 ms
75,520 KB
testcase_06 AC 79 ms
77,824 KB
testcase_07 AC 95 ms
77,440 KB
testcase_08 AC 114 ms
78,976 KB
testcase_09 AC 130 ms
79,232 KB
testcase_10 AC 122 ms
79,488 KB
testcase_11 AC 172 ms
79,616 KB
testcase_12 AC 155 ms
79,488 KB
testcase_13 AC 317 ms
79,616 KB
testcase_14 AC 721 ms
79,488 KB
testcase_15 AC 316 ms
79,488 KB
testcase_16 AC 797 ms
79,488 KB
testcase_17 AC 737 ms
79,104 KB
testcase_18 AC 148 ms
79,744 KB
testcase_19 AC 198 ms
79,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-

N, P = map(int, raw_input().split())

dp = [10**9 + 7]*(P + 5)
for i in xrange(N):
    a, b, c = map(int, raw_input().split())
    if i == 0:
        dp[:4] = [a, b, c, 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 "%.10f" % (1.0*dp[P]/N)
0