結果

問題 No.2232 Miser's Gift
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-03-03 18:43:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 497 ms / 2,000 ms
コード長 389 bytes
コンパイル時間 827 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 157,072 KB
最終ジャッジ日時 2024-09-17 22:12:05
合計ジャッジ時間 17,677 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,696 KB
testcase_01 AC 38 ms
52,876 KB
testcase_02 AC 39 ms
53,412 KB
testcase_03 AC 384 ms
157,060 KB
testcase_04 AC 372 ms
156,720 KB
testcase_05 AC 100 ms
84,380 KB
testcase_06 AC 37 ms
53,020 KB
testcase_07 AC 69 ms
78,808 KB
testcase_08 AC 403 ms
156,940 KB
testcase_09 AC 494 ms
156,660 KB
testcase_10 AC 398 ms
156,828 KB
testcase_11 AC 463 ms
156,972 KB
testcase_12 AC 407 ms
156,524 KB
testcase_13 AC 379 ms
156,808 KB
testcase_14 AC 379 ms
156,620 KB
testcase_15 AC 386 ms
156,924 KB
testcase_16 AC 384 ms
156,476 KB
testcase_17 AC 376 ms
156,976 KB
testcase_18 AC 380 ms
156,780 KB
testcase_19 AC 379 ms
156,724 KB
testcase_20 AC 383 ms
156,956 KB
testcase_21 AC 378 ms
156,792 KB
testcase_22 AC 379 ms
156,952 KB
testcase_23 AC 495 ms
156,680 KB
testcase_24 AC 497 ms
156,764 KB
testcase_25 AC 438 ms
156,892 KB
testcase_26 AC 497 ms
157,004 KB
testcase_27 AC 484 ms
156,796 KB
testcase_28 AC 398 ms
156,832 KB
testcase_29 AC 434 ms
156,472 KB
testcase_30 AC 396 ms
156,896 KB
testcase_31 AC 440 ms
156,500 KB
testcase_32 AC 400 ms
156,844 KB
testcase_33 AC 386 ms
156,792 KB
testcase_34 AC 384 ms
156,796 KB
testcase_35 AC 382 ms
157,008 KB
testcase_36 AC 380 ms
157,072 KB
testcase_37 AC 391 ms
156,896 KB
testcase_38 AC 61 ms
67,220 KB
testcase_39 AC 61 ms
66,876 KB
testcase_40 AC 61 ms
66,780 KB
testcase_41 AC 61 ms
67,472 KB
testcase_42 AC 61 ms
67,472 KB
testcase_43 AC 61 ms
66,468 KB
testcase_44 AC 63 ms
67,312 KB
testcase_45 AC 61 ms
67,052 KB
testcase_46 AC 62 ms
68,092 KB
testcase_47 AC 60 ms
65,896 KB
testcase_48 AC 51 ms
62,888 KB
testcase_49 AC 50 ms
61,936 KB
testcase_50 AC 51 ms
63,316 KB
testcase_51 AC 51 ms
62,452 KB
testcase_52 AC 51 ms
62,932 KB
testcase_53 AC 51 ms
62,752 KB
testcase_54 AC 50 ms
63,036 KB
testcase_55 AC 53 ms
63,492 KB
testcase_56 AC 51 ms
62,384 KB
testcase_57 AC 52 ms
63,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, W = map(int, input().split())
w = [0] * N
v = [0] * N
for i in range(N):
  w[i], v[i] = map(int, input().split())

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

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