結果

問題 No.472 平均順位
ユーザー terrafarmterrafarm
提出日時 2020-12-14 07:29:21
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 971 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 81,948 KB
実行使用メモリ 110,376 KB
最終ジャッジ日時 2024-09-20 00:29:25
合計ジャッジ時間 7,845 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
86,944 KB
testcase_01 AC 84 ms
79,840 KB
testcase_02 AC 87 ms
79,900 KB
testcase_03 AC 85 ms
79,984 KB
testcase_04 AC 95 ms
80,580 KB
testcase_05 AC 91 ms
79,960 KB
testcase_06 AC 93 ms
81,060 KB
testcase_07 AC 101 ms
80,532 KB
testcase_08 AC 129 ms
81,076 KB
testcase_09 AC 264 ms
81,208 KB
testcase_10 AC 209 ms
81,032 KB
testcase_11 AC 625 ms
81,924 KB
testcase_12 AC 466 ms
81,484 KB
testcase_13 AC 1,599 ms
83,860 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import logging
import sys
from inspect import currentframe

# 一つ前の配列だけ持っていれば十分
sys.setrecursionlimit(10 ** 6)
input = sys.stdin.readline

logging.basicConfig(level=logging.DEBUG)


def dbg(*args):
    id2names = {id(v): k for k, v in currentframe().f_back.f_locals.items()}
    logging.debug(
        ", ".join(id2names.get(id(arg), "???") + " = " + repr(arg) for arg in args)
    )


def main():

    INF = 10 ** 10
    n, p = map(int, input().split())
    dp = [[INF] * (p + 1) for _ in range(2)]
    dp[0][0] = 0
    for i in range(n):
        l = list(map(int, input().split()))
        l.append(1)
        for j in range(p + 1):
            for k in range(4):
                if j + k <= p:
                    dp[1][j + k] = min(dp[1][j + k], dp[0][j] + l[k])
        for j in range(p + 1):
            dp[0][j] = dp[1][j]
        dp[1] = [INF] * (p + 1)
    ans = dp[0][p] / n
    print(ans)


if __name__ == "__main__":
    main()
0