結果

問題 No.472 平均順位
ユーザー titiatitia
提出日時 2024-01-08 01:37:03
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 350 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 111,500 KB
最終ジャッジ日時 2024-09-27 19:34:32
合計ジャッジ時間 6,152 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
60,332 KB
testcase_01 AC 33 ms
52,744 KB
testcase_02 AC 33 ms
52,624 KB
testcase_03 AC 33 ms
52,760 KB
testcase_04 AC 43 ms
62,156 KB
testcase_05 AC 34 ms
53,416 KB
testcase_06 AC 40 ms
62,048 KB
testcase_07 AC 44 ms
64,068 KB
testcase_08 AC 79 ms
76,248 KB
testcase_09 AC 161 ms
76,620 KB
testcase_10 AC 130 ms
76,080 KB
testcase_11 AC 376 ms
76,924 KB
testcase_12 AC 296 ms
76,508 KB
testcase_13 AC 1,044 ms
78,108 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

DP=[1<<30]*(P+1)
DP[0]=0

for i in range(N):
    A=list(map(int,input().split()))
    A.append(1)
    NDP=[1<<30]*(P+1)

    for j in range(P+1):
        for k in range(4):
            if j+k<=P:
                NDP[j+k]=min(NDP[j+k],DP[j]+A[k])
    DP=NDP
        
print(DP[P]/N)
0