結果

問題 No.2232 Miser's Gift
ユーザー vwxyzvwxyz
提出日時 2024-08-15 12:06:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 293 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 78,856 KB
最終ジャッジ日時 2024-08-15 12:06:09
合計ジャッジ時間 7,848 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 36 ms
52,352 KB
testcase_03 AC 129 ms
78,660 KB
testcase_04 AC 80 ms
78,280 KB
testcase_05 AC 60 ms
66,688 KB
testcase_06 AC 36 ms
51,584 KB
testcase_07 AC 62 ms
77,972 KB
testcase_08 AC 129 ms
78,464 KB
testcase_09 AC 136 ms
77,952 KB
testcase_10 AC 129 ms
78,008 KB
testcase_11 AC 128 ms
77,952 KB
testcase_12 AC 128 ms
77,952 KB
testcase_13 AC 111 ms
78,464 KB
testcase_14 AC 127 ms
78,304 KB
testcase_15 AC 128 ms
78,856 KB
testcase_16 AC 110 ms
78,132 KB
testcase_17 AC 134 ms
78,296 KB
testcase_18 AC 109 ms
78,652 KB
testcase_19 AC 110 ms
78,604 KB
testcase_20 AC 108 ms
78,452 KB
testcase_21 AC 108 ms
78,228 KB
testcase_22 AC 111 ms
78,712 KB
testcase_23 AC 139 ms
78,080 KB
testcase_24 AC 139 ms
78,228 KB
testcase_25 AC 151 ms
78,264 KB
testcase_26 AC 158 ms
78,304 KB
testcase_27 AC 144 ms
78,292 KB
testcase_28 AC 105 ms
78,336 KB
testcase_29 AC 119 ms
78,080 KB
testcase_30 AC 102 ms
78,208 KB
testcase_31 AC 107 ms
78,204 KB
testcase_32 AC 106 ms
77,824 KB
testcase_33 AC 131 ms
78,284 KB
testcase_34 AC 128 ms
78,840 KB
testcase_35 AC 127 ms
78,584 KB
testcase_36 AC 132 ms
78,164 KB
testcase_37 AC 115 ms
78,344 KB
testcase_38 AC 50 ms
61,952 KB
testcase_39 AC 49 ms
61,824 KB
testcase_40 AC 48 ms
61,824 KB
testcase_41 AC 49 ms
61,568 KB
testcase_42 AC 48 ms
61,568 KB
testcase_43 AC 49 ms
61,824 KB
testcase_44 AC 48 ms
61,952 KB
testcase_45 AC 54 ms
61,568 KB
testcase_46 AC 53 ms
61,952 KB
testcase_47 AC 51 ms
61,568 KB
testcase_48 AC 46 ms
60,032 KB
testcase_49 AC 43 ms
59,448 KB
testcase_50 AC 43 ms
59,136 KB
testcase_51 AC 43 ms
59,520 KB
testcase_52 AC 44 ms
59,520 KB
testcase_53 AC 43 ms
59,136 KB
testcase_54 AC 43 ms
59,392 KB
testcase_55 AC 41 ms
59,392 KB
testcase_56 AC 43 ms
59,648 KB
testcase_57 AC 43 ms
59,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,W=map(int,input().split())
inf=1<<60
dp=[-inf]*(W+1)
dp[0]=0
for n in range(N):
    w,v=map(int,input().split())
    for s in range(W,w-1,-1):
        dp[s]=max(dp[s],dp[s-w]+v)
for w in range(1,W+1):
    dp[w]=max(dp[w],dp[w-1])
for X in range(1,W+1):
    ans=dp[W]-dp[W-X]+1
    print(ans)
0