結果

問題 No.2232 Miser's Gift
ユーザー ch1channnch1channn
提出日時 2023-03-12 02:48:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 549 ms / 2,000 ms
コード長 856 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 157,236 KB
最終ジャッジ日時 2024-09-18 06:53:20
合計ジャッジ時間 16,421 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,132 KB
testcase_01 AC 38 ms
53,660 KB
testcase_02 AC 39 ms
53,660 KB
testcase_03 AC 345 ms
156,296 KB
testcase_04 AC 324 ms
156,296 KB
testcase_05 AC 96 ms
83,792 KB
testcase_06 AC 38 ms
53,272 KB
testcase_07 AC 69 ms
78,832 KB
testcase_08 AC 370 ms
156,684 KB
testcase_09 AC 372 ms
156,960 KB
testcase_10 AC 365 ms
156,728 KB
testcase_11 AC 446 ms
157,048 KB
testcase_12 AC 365 ms
156,844 KB
testcase_13 AC 338 ms
157,064 KB
testcase_14 AC 333 ms
156,976 KB
testcase_15 AC 334 ms
156,976 KB
testcase_16 AC 333 ms
156,688 KB
testcase_17 AC 334 ms
156,988 KB
testcase_18 AC 335 ms
156,572 KB
testcase_19 AC 339 ms
156,676 KB
testcase_20 AC 335 ms
157,236 KB
testcase_21 AC 332 ms
156,808 KB
testcase_22 AC 332 ms
157,084 KB
testcase_23 AC 549 ms
156,560 KB
testcase_24 AC 548 ms
156,736 KB
testcase_25 AC 489 ms
156,904 KB
testcase_26 AC 474 ms
156,868 KB
testcase_27 AC 537 ms
156,556 KB
testcase_28 AC 356 ms
157,192 KB
testcase_29 AC 354 ms
156,784 KB
testcase_30 AC 361 ms
156,920 KB
testcase_31 AC 407 ms
157,052 KB
testcase_32 AC 406 ms
156,760 KB
testcase_33 AC 334 ms
156,272 KB
testcase_34 AC 335 ms
156,536 KB
testcase_35 AC 334 ms
156,992 KB
testcase_36 AC 327 ms
156,856 KB
testcase_37 AC 338 ms
156,900 KB
testcase_38 AC 62 ms
65,976 KB
testcase_39 AC 61 ms
66,264 KB
testcase_40 AC 62 ms
66,868 KB
testcase_41 AC 63 ms
67,720 KB
testcase_42 AC 62 ms
67,216 KB
testcase_43 AC 62 ms
66,756 KB
testcase_44 AC 63 ms
68,420 KB
testcase_45 AC 62 ms
67,492 KB
testcase_46 AC 64 ms
67,420 KB
testcase_47 AC 58 ms
66,176 KB
testcase_48 AC 51 ms
62,080 KB
testcase_49 AC 51 ms
61,992 KB
testcase_50 AC 52 ms
63,252 KB
testcase_51 AC 50 ms
62,236 KB
testcase_52 AC 51 ms
63,708 KB
testcase_53 AC 52 ms
62,564 KB
testcase_54 AC 52 ms
62,996 KB
testcase_55 AC 54 ms
64,136 KB
testcase_56 AC 51 ms
62,484 KB
testcase_57 AC 54 ms
62,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
if sys.platform =='ios':
	import clipboard
	a=clipboard.get()
	a = a.split('\n')
	text = '\n'.join(a)
	with open('input_file.txt','w') as f:
		f.write(text)
	sys.stdin = open('input_file.txt')
sys.setrecursionlimit(410000000)
stdin = sys.stdin 
ni = lambda: int(ns())
na = lambda: list(map(int, stdin.readline().split()))
ns = lambda: stdin.readline().strip()
nm = lambda: map(int,input().split())
na_1 = lambda: list(map(lambda x:int(x)*(-1), stdin.readline().split()))
na_2 = lambda: list(map(lambda x:int(x)-1, stdin.readline().split()))

N,W = nm()
dp = [[0]*(W+1) for i in range(N+1)]

wv = [na()for i in range(N)]

for i in range(1,N+1):
	for j in range(W+1):
		dp[i][j] = max(dp[i][j],dp[i-1][j])
		if j >= wv[i-1][0]:
			dp[i][j] = max(dp[i][j],dp[i-1][j-wv[i-1][0]]+wv[i-1][1])

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