結果

問題 No.1858 Gorgeous Knapsack
ユーザー ysys
提出日時 2022-03-06 23:01:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 649 ms / 2,000 ms
コード長 437 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 272,512 KB
最終ジャッジ日時 2024-07-21 09:24:11
合計ジャッジ時間 8,432 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,584 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 57 ms
64,640 KB
testcase_04 AC 224 ms
111,616 KB
testcase_05 AC 79 ms
73,088 KB
testcase_06 AC 222 ms
110,976 KB
testcase_07 AC 144 ms
87,296 KB
testcase_08 AC 250 ms
133,504 KB
testcase_09 AC 446 ms
176,896 KB
testcase_10 AC 175 ms
104,960 KB
testcase_11 AC 256 ms
128,640 KB
testcase_12 AC 309 ms
153,984 KB
testcase_13 AC 89 ms
81,664 KB
testcase_14 AC 43 ms
59,776 KB
testcase_15 AC 43 ms
60,288 KB
testcase_16 AC 43 ms
59,392 KB
testcase_17 AC 37 ms
52,224 KB
testcase_18 AC 36 ms
52,096 KB
testcase_19 AC 35 ms
51,840 KB
testcase_20 AC 35 ms
51,456 KB
testcase_21 AC 36 ms
51,712 KB
testcase_22 AC 35 ms
51,584 KB
testcase_23 AC 34 ms
51,712 KB
testcase_24 AC 116 ms
90,240 KB
testcase_25 AC 332 ms
154,624 KB
testcase_26 AC 282 ms
133,760 KB
testcase_27 AC 271 ms
133,888 KB
testcase_28 AC 192 ms
109,184 KB
testcase_29 AC 62 ms
66,432 KB
testcase_30 AC 62 ms
67,584 KB
testcase_31 AC 62 ms
68,224 KB
testcase_32 AC 58 ms
66,432 KB
testcase_33 AC 64 ms
69,120 KB
testcase_34 AC 649 ms
272,128 KB
testcase_35 AC 464 ms
271,872 KB
testcase_36 AC 621 ms
272,512 KB
testcase_37 AC 37 ms
51,328 KB
testcase_38 AC 54 ms
67,200 KB
testcase_39 AC 42 ms
58,368 KB
testcase_40 AC 433 ms
272,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, M = map(int, input().split())
T = [tuple(map(int, input().split())) for i in range(N)]
dp = [[0] * (M + 1) for i in range(N + 1)]
T.sort(reverse=True)
ans = 0
for i in range(N):
  v, w = T[i]
  for j in range(M):
    dp[i + 1][j] = max(dp[i + 1][j], dp[i][j])
    if j + w <= M:
      dp[i + 1][j + w] = max(dp[i + 1][j + w], dp[i][j] + v)
      ans = max(ans, dp[i + 1][j + w] * v)

print(ans)
0