結果

問題 No.1858 Gorgeous Knapsack
ユーザー qibqib
提出日時 2022-11-23 18:19:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 444 ms / 2,000 ms
コード長 356 bytes
コンパイル時間 524 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 77,560 KB
最終ジャッジ日時 2024-09-24 23:15:15
合計ジャッジ時間 5,573 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,700 KB
testcase_01 AC 36 ms
52,948 KB
testcase_02 AC 36 ms
52,348 KB
testcase_03 AC 45 ms
63,704 KB
testcase_04 AC 120 ms
76,544 KB
testcase_05 AC 64 ms
73,268 KB
testcase_06 AC 116 ms
76,496 KB
testcase_07 AC 92 ms
76,996 KB
testcase_08 AC 134 ms
77,056 KB
testcase_09 AC 172 ms
76,992 KB
testcase_10 AC 104 ms
77,164 KB
testcase_11 AC 124 ms
77,432 KB
testcase_12 AC 153 ms
76,928 KB
testcase_13 AC 83 ms
77,212 KB
testcase_14 AC 42 ms
59,684 KB
testcase_15 AC 38 ms
53,556 KB
testcase_16 AC 41 ms
58,896 KB
testcase_17 AC 37 ms
53,072 KB
testcase_18 AC 37 ms
54,108 KB
testcase_19 AC 35 ms
52,272 KB
testcase_20 AC 36 ms
53,668 KB
testcase_21 AC 35 ms
53,012 KB
testcase_22 AC 34 ms
53,340 KB
testcase_23 AC 35 ms
52,760 KB
testcase_24 AC 78 ms
75,964 KB
testcase_25 AC 123 ms
77,144 KB
testcase_26 AC 130 ms
76,672 KB
testcase_27 AC 120 ms
76,580 KB
testcase_28 AC 99 ms
76,972 KB
testcase_29 AC 69 ms
73,212 KB
testcase_30 AC 78 ms
76,792 KB
testcase_31 AC 71 ms
73,400 KB
testcase_32 AC 71 ms
74,724 KB
testcase_33 AC 77 ms
76,800 KB
testcase_34 AC 444 ms
77,560 KB
testcase_35 AC 74 ms
76,908 KB
testcase_36 AC 258 ms
77,196 KB
testcase_37 AC 35 ms
52,960 KB
testcase_38 AC 71 ms
77,304 KB
testcase_39 AC 40 ms
59,356 KB
testcase_40 AC 73 ms
76,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 1 << 60

n, m = map(int, input().split())
items = [list(map(int, input().split())) for _ in range(n)]

items.sort(key=lambda x: x[0])

ans = 0
dp = [- INF for _ in range(m + 1)]
dp[0] = 0
for _ in range(n):
  v, w = items.pop()
  for i in range(m - w, -1, -1):
    ans = max(ans, v * (dp[i] + v))
    dp[i + w] = max(dp[i + w], dp[i] + v)

print(ans)
0