結果

問題 No.1858 Gorgeous Knapsack
ユーザー ytftytft
提出日時 2022-03-14 12:43:28
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 457 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 462,592 KB
最終ジャッジ日時 2024-09-19 22:43:26
合計ジャッジ時間 17,959 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,128 KB
testcase_01 AC 36 ms
52,768 KB
testcase_02 AC 38 ms
52,368 KB
testcase_03 AC 59 ms
68,248 KB
testcase_04 AC 486 ms
147,956 KB
testcase_05 AC 140 ms
84,068 KB
testcase_06 AC 530 ms
156,056 KB
testcase_07 AC 315 ms
122,772 KB
testcase_08 AC 755 ms
208,984 KB
testcase_09 AC 1,278 ms
300,436 KB
testcase_10 AC 369 ms
127,480 KB
testcase_11 AC 565 ms
175,252 KB
testcase_12 AC 964 ms
246,300 KB
testcase_13 AC 133 ms
86,656 KB
testcase_14 AC 51 ms
64,896 KB
testcase_15 AC 42 ms
60,800 KB
testcase_16 AC 44 ms
63,360 KB
testcase_17 AC 35 ms
52,824 KB
testcase_18 AC 34 ms
52,480 KB
testcase_19 AC 33 ms
52,608 KB
testcase_20 AC 34 ms
51,968 KB
testcase_21 AC 34 ms
51,840 KB
testcase_22 AC 37 ms
51,968 KB
testcase_23 AC 37 ms
52,096 KB
testcase_24 AC 209 ms
92,564 KB
testcase_25 AC 884 ms
235,628 KB
testcase_26 AC 722 ms
207,728 KB
testcase_27 AC 680 ms
199,680 KB
testcase_28 AC 471 ms
155,500 KB
testcase_29 AC 70 ms
77,152 KB
testcase_30 AC 69 ms
77,000 KB
testcase_31 AC 69 ms
77,016 KB
testcase_32 AC 65 ms
73,984 KB
testcase_33 AC 75 ms
77,440 KB
testcase_34 TLE -
testcase_35 AC 1,508 ms
429,140 KB
testcase_36 AC 1,775 ms
396,368 KB
testcase_37 AC 35 ms
52,584 KB
testcase_38 AC 64 ms
77,572 KB
testcase_39 AC 41 ms
61,408 KB
testcase_40 AC 1,507 ms
429,576 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]
	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]
	ans=max(ans,V*max(dp[i]))
print(ans)
0