結果

問題 No.1947 質より種類数
ユーザー hashi_pyhashi_py
提出日時 2022-05-20 22:43:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,092 ms / 2,000 ms
コード長 525 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 272,640 KB
最終ジャッジ日時 2024-09-20 09:02:03
合計ジャッジ時間 12,226 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,712 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 41 ms
51,712 KB
testcase_03 AC 40 ms
51,712 KB
testcase_04 AC 72 ms
66,560 KB
testcase_05 AC 63 ms
64,256 KB
testcase_06 AC 63 ms
64,768 KB
testcase_07 AC 69 ms
64,256 KB
testcase_08 AC 72 ms
66,816 KB
testcase_09 AC 83 ms
69,120 KB
testcase_10 AC 76 ms
67,200 KB
testcase_11 AC 126 ms
85,504 KB
testcase_12 AC 98 ms
71,808 KB
testcase_13 AC 74 ms
66,304 KB
testcase_14 AC 354 ms
129,152 KB
testcase_15 AC 201 ms
89,728 KB
testcase_16 AC 473 ms
151,680 KB
testcase_17 AC 580 ms
174,592 KB
testcase_18 AC 984 ms
262,016 KB
testcase_19 AC 860 ms
238,592 KB
testcase_20 AC 667 ms
196,904 KB
testcase_21 AC 772 ms
219,776 KB
testcase_22 AC 114 ms
83,456 KB
testcase_23 AC 388 ms
129,024 KB
testcase_24 AC 68 ms
65,152 KB
testcase_25 AC 67 ms
65,152 KB
testcase_26 AC 63 ms
64,512 KB
testcase_27 AC 65 ms
64,768 KB
testcase_28 AC 70 ms
66,176 KB
testcase_29 AC 1,092 ms
272,512 KB
testcase_30 AC 892 ms
272,640 KB
testcase_31 AC 39 ms
51,584 KB
testcase_32 AC 40 ms
51,968 KB
testcase_33 AC 51 ms
61,312 KB
testcase_34 AC 506 ms
272,384 KB
testcase_35 AC 493 ms
272,256 KB
testcase_36 AC 876 ms
272,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,v,c = map(int,input().split())
V = []
W = []
for i in range(n):
    a,b = map(int,input().split())
    W.append(a)
    V.append(b)

dp = [[0]*(v+1) for _ in range(n+1)]

for i in range(n):
    for j in range(v+1):
        dp[i+1][j]=dp[i][j]
        if(j-W[i]>=0):
            if(dp[i+1][j]<dp[i][j-W[i]]+V[i]+c):
                dp[i+1][j]=dp[i][j-W[i]]+V[i]+c
            # dp[i+1][j]=max(dp[i+1][j],dp[i][j-W[i]]+V[i])
        if(j-W[i]>=0):
            dp[i+1][j]=max(dp[i+1][j],dp[i+1][j-W[i]]+V[i])

print(dp[-1][-1])
0