結果

問題 No.1522 Unfairness
ユーザー roarisroaris
提出日時 2021-05-31 02:48:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 350 ms / 2,000 ms
コード長 478 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 135,892 KB
最終ジャッジ日時 2024-11-19 06:17:20
合計ジャッジ時間 4,964 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,100 KB
testcase_01 AC 40 ms
54,940 KB
testcase_02 AC 39 ms
55,928 KB
testcase_03 AC 131 ms
91,752 KB
testcase_04 AC 67 ms
72,172 KB
testcase_05 AC 60 ms
69,448 KB
testcase_06 AC 54 ms
67,328 KB
testcase_07 AC 183 ms
90,608 KB
testcase_08 AC 159 ms
89,748 KB
testcase_09 AC 58 ms
67,928 KB
testcase_10 AC 94 ms
84,504 KB
testcase_11 AC 68 ms
71,060 KB
testcase_12 AC 119 ms
88,760 KB
testcase_13 AC 214 ms
113,004 KB
testcase_14 AC 68 ms
72,068 KB
testcase_15 AC 340 ms
135,804 KB
testcase_16 AC 350 ms
135,872 KB
testcase_17 AC 345 ms
135,892 KB
testcase_18 AC 349 ms
135,532 KB
testcase_19 AC 346 ms
135,540 KB
testcase_20 AC 313 ms
135,516 KB
testcase_21 AC 40 ms
54,584 KB
testcase_22 AC 40 ms
53,488 KB
testcase_23 AC 40 ms
55,188 KB
testcase_24 AC 57 ms
66,716 KB
testcase_25 AC 47 ms
61,588 KB
testcase_26 AC 56 ms
66,348 KB
testcase_27 AC 40 ms
54,752 KB
testcase_28 AC 47 ms
62,860 KB
testcase_29 AC 57 ms
66,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N, M = map(int, input().split())
A = list(map(int, input().split()))
A.sort(reverse=True)
dp = [[0]*(M+1) for _ in range(N+1)]

for i in range(1, N+1):
    for j in range(M+1):
        dp[i][j] = max(dp[i][j], dp[i-1][j])
    
    if i>=2:
        for j in range(M+1):
            k = j+A[i-2]-A[i-1]
            
            if k<=M:
                dp[i][k] = max(dp[i][k], dp[i-2][j]+A[i-2])

print(max(dp[N]))
0