結果

問題 No.472 平均順位
ユーザー titiatitia
提出日時 2024-01-08 01:37:42
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 397 bytes
コンパイル時間 370 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 100,240 KB
最終ジャッジ日時 2024-09-27 19:34:44
合計ジャッジ時間 12,381 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,136 KB
testcase_01 AC 39 ms
52,148 KB
testcase_02 AC 38 ms
52,088 KB
testcase_03 AC 41 ms
53,288 KB
testcase_04 AC 54 ms
63,088 KB
testcase_05 AC 43 ms
53,044 KB
testcase_06 AC 52 ms
61,504 KB
testcase_07 AC 55 ms
64,656 KB
testcase_08 AC 82 ms
75,976 KB
testcase_09 AC 151 ms
76,760 KB
testcase_10 AC 130 ms
76,304 KB
testcase_11 AC 348 ms
76,488 KB
testcase_12 AC 301 ms
76,936 KB
testcase_13 AC 893 ms
78,132 KB
testcase_14 TLE -
testcase_15 AC 898 ms
77,860 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 206 ms
76,144 KB
testcase_19 AC 448 ms
76,816 KB
権限があれば一括ダウンロードができます

ソースコード

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):
        if DP[j]>=(1<<30):
            continue
        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