結果

問題 No.2232 Miser's Gift
ユーザー shobonvipshobonvip
提出日時 2023-03-03 21:43:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 233 ms / 2,000 ms
コード長 315 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 156,980 KB
最終ジャッジ日時 2024-09-17 22:38:18
合計ジャッジ時間 10,177 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,820 KB
testcase_01 AC 39 ms
52,896 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 180 ms
156,512 KB
testcase_04 AC 230 ms
156,508 KB
testcase_05 AC 65 ms
76,480 KB
testcase_06 AC 36 ms
53,516 KB
testcase_07 AC 64 ms
78,864 KB
testcase_08 AC 189 ms
156,820 KB
testcase_09 AC 197 ms
156,460 KB
testcase_10 AC 190 ms
156,640 KB
testcase_11 AC 189 ms
156,460 KB
testcase_12 AC 194 ms
156,728 KB
testcase_13 AC 175 ms
156,464 KB
testcase_14 AC 183 ms
156,428 KB
testcase_15 AC 181 ms
156,668 KB
testcase_16 AC 179 ms
156,908 KB
testcase_17 AC 178 ms
156,448 KB
testcase_18 AC 177 ms
156,928 KB
testcase_19 AC 179 ms
156,720 KB
testcase_20 AC 178 ms
156,452 KB
testcase_21 AC 179 ms
156,864 KB
testcase_22 AC 177 ms
156,780 KB
testcase_23 AC 233 ms
156,484 KB
testcase_24 AC 228 ms
156,388 KB
testcase_25 AC 229 ms
156,312 KB
testcase_26 AC 231 ms
156,624 KB
testcase_27 AC 233 ms
156,384 KB
testcase_28 AC 207 ms
156,476 KB
testcase_29 AC 208 ms
156,464 KB
testcase_30 AC 204 ms
156,756 KB
testcase_31 AC 207 ms
156,520 KB
testcase_32 AC 204 ms
156,532 KB
testcase_33 AC 178 ms
156,824 KB
testcase_34 AC 181 ms
156,552 KB
testcase_35 AC 183 ms
156,296 KB
testcase_36 AC 176 ms
156,980 KB
testcase_37 AC 176 ms
156,228 KB
testcase_38 AC 50 ms
64,256 KB
testcase_39 AC 51 ms
65,292 KB
testcase_40 AC 51 ms
63,740 KB
testcase_41 AC 51 ms
65,128 KB
testcase_42 AC 50 ms
64,004 KB
testcase_43 AC 51 ms
64,660 KB
testcase_44 AC 53 ms
65,128 KB
testcase_45 AC 53 ms
65,048 KB
testcase_46 AC 52 ms
64,192 KB
testcase_47 AC 52 ms
63,948 KB
testcase_48 AC 45 ms
61,656 KB
testcase_49 AC 46 ms
61,308 KB
testcase_50 AC 45 ms
61,176 KB
testcase_51 AC 43 ms
61,244 KB
testcase_52 AC 45 ms
61,120 KB
testcase_53 AC 43 ms
61,976 KB
testcase_54 AC 45 ms
61,428 KB
testcase_55 AC 46 ms
60,764 KB
testcase_56 AC 50 ms
61,272 KB
testcase_57 AC 50 ms
61,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,W = map(int,input().split())
dp = [-10**9] * (W+1)
dp[0] = 0
for i in range(N):
	w,v = map(int,input().split())
	ndp = dp[::]
	for j in range(W+1):
		if j+w <= W:
			ndp[j+w] = max(ndp[j+w], dp[j]+v)
	dp = ndp

for i in range(W):
	dp[i+1] = max(dp[i], dp[i+1])

for i in range(1, W+1):
	print(dp[W] - dp[W-i] + 1)
0