結果

問題 No.1522 Unfairness
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-05-15 17:39:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 352 ms / 2,000 ms
コード長 309 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 137,092 KB
最終ジャッジ日時 2024-11-19 06:07:52
合計ジャッジ時間 4,989 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,900 KB
testcase_01 AC 40 ms
52,336 KB
testcase_02 AC 39 ms
52,680 KB
testcase_03 AC 135 ms
92,768 KB
testcase_04 AC 71 ms
71,180 KB
testcase_05 AC 63 ms
68,380 KB
testcase_06 AC 53 ms
64,240 KB
testcase_07 AC 172 ms
91,816 KB
testcase_08 AC 144 ms
91,040 KB
testcase_09 AC 59 ms
66,504 KB
testcase_10 AC 87 ms
74,564 KB
testcase_11 AC 66 ms
69,216 KB
testcase_12 AC 110 ms
88,236 KB
testcase_13 AC 221 ms
114,520 KB
testcase_14 AC 67 ms
69,796 KB
testcase_15 AC 345 ms
136,996 KB
testcase_16 AC 349 ms
137,092 KB
testcase_17 AC 343 ms
137,048 KB
testcase_18 AC 352 ms
136,932 KB
testcase_19 AC 346 ms
136,916 KB
testcase_20 AC 247 ms
137,060 KB
testcase_21 AC 39 ms
52,348 KB
testcase_22 AC 39 ms
52,600 KB
testcase_23 AC 40 ms
53,692 KB
testcase_24 AC 64 ms
68,192 KB
testcase_25 AC 45 ms
60,988 KB
testcase_26 AC 58 ms
66,076 KB
testcase_27 AC 40 ms
52,224 KB
testcase_28 AC 46 ms
60,184 KB
testcase_29 AC 60 ms
66,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M=lambda:map(int,input().split())
n,m=M()
a=sorted(list(M()))[::-1]
D,w,v=[[0]*(m+1)for _ in range(n+1)],[a[i]-a[i+1]for i in range(n-1)],[a[i]for i in range(n-1)]
for i in range(n):
 for j in range(m+1):
  if i<n-1 and j+w[i]<=m:D[i+2][j+w[i]]=D[i][j]+v[i]
  D[i+1][j]=max(D[i+1][j],D[i][j])
print(max(D[n]))
0