結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 43 ms
51,968 KB
testcase_02 AC 41 ms
51,712 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 AC 68 ms
71,040 KB
testcase_05 AC 63 ms
69,376 KB
testcase_06 AC 70 ms
73,088 KB
testcase_07 AC 67 ms
71,168 KB
testcase_08 AC 69 ms
72,064 KB
testcase_09 AC 97 ms
76,008 KB
testcase_10 AC 96 ms
76,288 KB
testcase_11 AC 124 ms
76,680 KB
testcase_12 AC 102 ms
76,032 KB
testcase_13 AC 90 ms
75,776 KB
testcase_14 AC 288 ms
77,212 KB
testcase_15 AC 208 ms
76,836 KB
testcase_16 AC 410 ms
77,936 KB
testcase_17 AC 471 ms
77,876 KB
testcase_18 AC 472 ms
78,080 KB
testcase_19 AC 660 ms
78,336 KB
testcase_20 AC 403 ms
78,128 KB
testcase_21 AC 473 ms
78,524 KB
testcase_22 AC 103 ms
76,160 KB
testcase_23 AC 264 ms
77,188 KB
testcase_24 AC 71 ms
72,064 KB
testcase_25 AC 66 ms
69,504 KB
testcase_26 AC 62 ms
68,736 KB
testcase_27 AC 63 ms
68,992 KB
testcase_28 AC 71 ms
72,192 KB
testcase_29 AC 449 ms
77,952 KB
testcase_30 AC 389 ms
78,232 KB
testcase_31 AC 37 ms
52,352 KB
testcase_32 AC 38 ms
52,096 KB
testcase_33 AC 46 ms
60,288 KB
testcase_34 AC 390 ms
78,720 KB
testcase_35 AC 214 ms
78,080 KB
testcase_36 AC 388 ms
78,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline


N,V,C=map(int,input().split())
VW=[list(map(int,input().split())) for _ in range(N)]
INF=float("inf")

dp = [-INF]*(V+1)
dp[0]=0
for v,w in VW:
    dp2 = [-INF]*(V+1)
    dp2[0] = 0
    for i in range(V+1):
        dp2[i] = dp[i]
        if i-v>=0:
            dp2[i] = max(dp2[i], dp[i-v]+w+C, dp2[i-v]+w)
    dp = dp2
print(max(dp))
0