結果

問題 No.1858 Gorgeous Knapsack
ユーザー ytftytft
提出日時 2022-03-14 12:45:04
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 489 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 81,740 KB
実行使用メモリ 471,980 KB
最終ジャッジ日時 2024-09-19 22:45:24
合計ジャッジ時間 17,500 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,416 KB
testcase_01 AC 37 ms
53,012 KB
testcase_02 AC 34 ms
53,364 KB
testcase_03 AC 57 ms
68,848 KB
testcase_04 AC 434 ms
145,292 KB
testcase_05 AC 147 ms
90,904 KB
testcase_06 AC 532 ms
167,804 KB
testcase_07 AC 317 ms
120,948 KB
testcase_08 AC 717 ms
207,368 KB
testcase_09 AC 1,273 ms
299,448 KB
testcase_10 AC 371 ms
134,484 KB
testcase_11 AC 570 ms
174,112 KB
testcase_12 AC 903 ms
245,544 KB
testcase_13 AC 128 ms
86,288 KB
testcase_14 AC 49 ms
64,492 KB
testcase_15 AC 41 ms
61,556 KB
testcase_16 AC 45 ms
62,900 KB
testcase_17 AC 36 ms
53,568 KB
testcase_18 AC 36 ms
53,596 KB
testcase_19 AC 35 ms
53,140 KB
testcase_20 AC 34 ms
53,416 KB
testcase_21 AC 35 ms
53,960 KB
testcase_22 AC 34 ms
53,268 KB
testcase_23 AC 34 ms
53,576 KB
testcase_24 AC 198 ms
92,064 KB
testcase_25 AC 843 ms
234,708 KB
testcase_26 AC 685 ms
204,984 KB
testcase_27 AC 671 ms
196,816 KB
testcase_28 AC 473 ms
154,160 KB
testcase_29 AC 68 ms
77,040 KB
testcase_30 AC 66 ms
77,156 KB
testcase_31 AC 67 ms
77,208 KB
testcase_32 AC 60 ms
73,808 KB
testcase_33 AC 71 ms
77,444 KB
testcase_34 TLE -
testcase_35 AC 1,493 ms
407,588 KB
testcase_36 AC 1,729 ms
386,524 KB
testcase_37 AC 33 ms
52,396 KB
testcase_38 AC 64 ms
77,316 KB
testcase_39 AC 42 ms
61,164 KB
testcase_40 AC 1,551 ms
407,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda:sys.stdin.readline().rstrip()
N,M=map(int,input().split())
jewel=[tuple(map(int,input().split())) for i in range(N)]
jewel=sorted(jewel,key=lambda x:-x[0])
dp=[[-float('inf') for i in range(M+1)] for j in range(N+1)]
dp[0][0]=0
ans=0
for i in range(1,N+1):
	V,W=jewel[i-1]
	Mx=-float('inf')
	for j in range(M+1):
		if j-W>=0 and dp[i-1][j-W]+V>dp[i-1][j]:
			dp[i][j]=dp[i-1][j-W]+V
		else:
			dp[i][j]=dp[i-1][j]
		Mx=max(Mx,dp[i][j])
	ans=max(ans,V*Mx)
print(ans)
0