結果

問題 No.2232 Miser's Gift
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-03-03 21:54:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 297 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,208 KB
最終ジャッジ日時 2024-09-17 22:51:21
合計ジャッジ時間 7,525 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 34 ms
52,224 KB
testcase_03 AC 113 ms
77,056 KB
testcase_04 AC 127 ms
76,640 KB
testcase_05 AC 52 ms
65,152 KB
testcase_06 AC 35 ms
52,096 KB
testcase_07 AC 58 ms
76,672 KB
testcase_08 AC 116 ms
77,136 KB
testcase_09 AC 118 ms
76,660 KB
testcase_10 AC 121 ms
76,800 KB
testcase_11 AC 119 ms
76,672 KB
testcase_12 AC 123 ms
76,544 KB
testcase_13 AC 121 ms
77,208 KB
testcase_14 AC 119 ms
77,056 KB
testcase_15 AC 114 ms
76,800 KB
testcase_16 AC 112 ms
77,056 KB
testcase_17 AC 112 ms
76,800 KB
testcase_18 AC 117 ms
77,056 KB
testcase_19 AC 114 ms
76,708 KB
testcase_20 AC 115 ms
76,504 KB
testcase_21 AC 117 ms
76,908 KB
testcase_22 AC 115 ms
77,056 KB
testcase_23 AC 148 ms
76,924 KB
testcase_24 AC 141 ms
77,056 KB
testcase_25 AC 139 ms
76,500 KB
testcase_26 AC 144 ms
76,688 KB
testcase_27 AC 141 ms
76,992 KB
testcase_28 AC 121 ms
76,512 KB
testcase_29 AC 120 ms
77,056 KB
testcase_30 AC 119 ms
76,648 KB
testcase_31 AC 119 ms
76,544 KB
testcase_32 AC 118 ms
76,928 KB
testcase_33 AC 113 ms
76,816 KB
testcase_34 AC 115 ms
77,184 KB
testcase_35 AC 114 ms
76,800 KB
testcase_36 AC 119 ms
76,928 KB
testcase_37 AC 122 ms
77,056 KB
testcase_38 AC 48 ms
62,336 KB
testcase_39 AC 49 ms
62,208 KB
testcase_40 AC 46 ms
62,336 KB
testcase_41 AC 48 ms
62,592 KB
testcase_42 AC 49 ms
62,720 KB
testcase_43 AC 51 ms
62,336 KB
testcase_44 AC 48 ms
62,720 KB
testcase_45 AC 48 ms
62,464 KB
testcase_46 AC 52 ms
62,336 KB
testcase_47 AC 49 ms
62,464 KB
testcase_48 AC 43 ms
60,544 KB
testcase_49 AC 41 ms
59,904 KB
testcase_50 AC 40 ms
60,416 KB
testcase_51 AC 42 ms
60,288 KB
testcase_52 AC 41 ms
60,160 KB
testcase_53 AC 41 ms
60,672 KB
testcase_54 AC 41 ms
60,160 KB
testcase_55 AC 40 ms
60,248 KB
testcase_56 AC 41 ms
60,672 KB
testcase_57 AC 41 ms
60,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,W = map(int,input().split())
WV = [list(map(int,input().split())) for i in range(n)]

dp = [0]*(W+1)
for w,v in WV:
    for i in range(W)[::-1]:
        if i+w <= W and dp[i+w] < dp[i]+v:
            dp[i+w] = dp[i]+v

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