結果

問題 No.472 平均順位
ユーザー h_nosonh_noson
提出日時 2017-02-03 21:03:00
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 388 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 82,688 KB
最終ジャッジ日時 2024-06-06 12:37:34
合計ジャッジ時間 7,587 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
57,600 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 40 ms
51,456 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 57 ms
63,744 KB
testcase_05 AC 39 ms
52,480 KB
testcase_06 AC 52 ms
62,592 KB
testcase_07 AC 59 ms
65,024 KB
testcase_08 AC 123 ms
76,920 KB
testcase_09 AC 261 ms
77,056 KB
testcase_10 AC 204 ms
76,460 KB
testcase_11 AC 646 ms
77,012 KB
testcase_12 AC 486 ms
76,988 KB
testcase_13 AC 1,622 ms
76,896 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 1e9
n,p = map(int,input().split())
dp = [[INF]*(p+1),[INF]*(p+1)]
dp[0][p] = 0
for i in range(n):
    abc = list(map(int,input().split()))
    abc.append(1)
    for j in range(p+1):
        dp[(i+1)%2][j] = INF
    for j in range(p+1):
        for k in range(4):
            if j >= k:
                dp[(i+1)%2][j-k] = min(dp[(i+1)%2][j-k],dp[i%2][j] + abc[k])
print(dp[n%2][0]/n)
0