結果

問題 No.1947 質より種類数
ユーザー nephrologistnephrologist
提出日時 2022-05-23 04:49:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 438 ms / 2,000 ms
コード長 580 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 78,080 KB
最終ジャッジ日時 2024-09-20 13:01:36
合計ジャッジ時間 6,389 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 45 ms
52,268 KB
testcase_03 AC 41 ms
51,712 KB
testcase_04 AC 61 ms
67,456 KB
testcase_05 AC 58 ms
65,536 KB
testcase_06 AC 59 ms
66,944 KB
testcase_07 AC 61 ms
65,920 KB
testcase_08 AC 58 ms
66,816 KB
testcase_09 AC 67 ms
73,856 KB
testcase_10 AC 63 ms
71,808 KB
testcase_11 AC 84 ms
76,396 KB
testcase_12 AC 79 ms
75,648 KB
testcase_13 AC 61 ms
70,144 KB
testcase_14 AC 175 ms
76,728 KB
testcase_15 AC 111 ms
76,800 KB
testcase_16 AC 233 ms
76,928 KB
testcase_17 AC 200 ms
77,228 KB
testcase_18 AC 438 ms
77,440 KB
testcase_19 AC 420 ms
77,608 KB
testcase_20 AC 230 ms
77,440 KB
testcase_21 AC 357 ms
77,288 KB
testcase_22 AC 79 ms
76,232 KB
testcase_23 AC 198 ms
76,416 KB
testcase_24 AC 56 ms
67,072 KB
testcase_25 AC 56 ms
65,408 KB
testcase_26 AC 54 ms
64,256 KB
testcase_27 AC 54 ms
64,512 KB
testcase_28 AC 63 ms
67,584 KB
testcase_29 AC 273 ms
77,440 KB
testcase_30 AC 281 ms
78,080 KB
testcase_31 AC 37 ms
51,968 KB
testcase_32 AC 37 ms
52,096 KB
testcase_33 AC 47 ms
61,312 KB
testcase_34 AC 353 ms
77,532 KB
testcase_35 AC 195 ms
77,168 KB
testcase_36 AC 290 ms
77,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.buffer.readline

n, k, c = map(int, input().split())


# total limit = k としておく(文字がかぶる)

# dp: 重さiまでの最高価値としておく。


dp = [0] * (k + 1)

for _ in range(n):
    w, v = map(int, input().split())
    ndp = [0] * (k + 1)

    for i in range(k + 1):
        # dp[i]+c, ndp[i-v]とmxとればOK
        ndp[i] = max(ndp[i], dp[i])
        if i - w >= 0:
            ndp[i] = max(dp[i - w] + c + v, ndp[i])
            ndp[i] = max(ndp[i], ndp[i - w] + v)
    dp = ndp[:]
    # print("dp", dp)
print(max(dp))
0