結果

問題 No.1522 Unfairness
ユーザー 👑 rin204rin204
提出日時 2022-03-24 15:18:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 254 ms / 2,000 ms
コード長 354 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 137,216 KB
最終ジャッジ日時 2024-10-12 23:39:10
合計ジャッジ時間 4,421 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 34 ms
51,840 KB
testcase_03 AC 102 ms
93,016 KB
testcase_04 AC 56 ms
66,944 KB
testcase_05 AC 51 ms
64,896 KB
testcase_06 AC 44 ms
61,312 KB
testcase_07 AC 141 ms
91,904 KB
testcase_08 AC 113 ms
91,008 KB
testcase_09 AC 48 ms
63,232 KB
testcase_10 AC 60 ms
71,168 KB
testcase_11 AC 53 ms
65,408 KB
testcase_12 AC 88 ms
87,936 KB
testcase_13 AC 156 ms
114,376 KB
testcase_14 AC 52 ms
65,792 KB
testcase_15 AC 231 ms
136,764 KB
testcase_16 AC 234 ms
137,216 KB
testcase_17 AC 235 ms
136,908 KB
testcase_18 AC 241 ms
136,960 KB
testcase_19 AC 232 ms
136,924 KB
testcase_20 AC 254 ms
136,924 KB
testcase_21 AC 39 ms
52,292 KB
testcase_22 AC 40 ms
52,256 KB
testcase_23 AC 36 ms
52,748 KB
testcase_24 AC 49 ms
62,684 KB
testcase_25 AC 41 ms
57,996 KB
testcase_26 AC 49 ms
61,652 KB
testcase_27 AC 38 ms
51,868 KB
testcase_28 AC 41 ms
58,560 KB
testcase_29 AC 48 ms
61,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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(n - 1):
    d = A[i] - A[i + 1]
    for j in range(m + 1):
        dp[i + 2][j] = dp[i + 1][j]
        if j >= d:
            dp[i + 2][j] = max(dp[i + 2][j], dp[i][j - d] + A[i])

print(dp[-1][-1])
    
0