結果

問題 No.1947 質より種類数
ユーザー H20H20
提出日時 2022-03-26 19:14:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 579 ms / 2,000 ms
コード長 415 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,392 KB
最終ジャッジ日時 2024-06-01 04:12:43
合計ジャッジ時間 8,196 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,584 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 59 ms
66,304 KB
testcase_05 AC 55 ms
65,408 KB
testcase_06 AC 57 ms
65,024 KB
testcase_07 AC 58 ms
65,920 KB
testcase_08 AC 60 ms
66,176 KB
testcase_09 AC 76 ms
74,112 KB
testcase_10 AC 69 ms
70,528 KB
testcase_11 AC 100 ms
76,308 KB
testcase_12 AC 89 ms
75,392 KB
testcase_13 AC 69 ms
70,144 KB
testcase_14 AC 239 ms
76,672 KB
testcase_15 AC 148 ms
76,188 KB
testcase_16 AC 297 ms
76,672 KB
testcase_17 AC 362 ms
76,672 KB
testcase_18 AC 579 ms
77,392 KB
testcase_19 AC 526 ms
76,800 KB
testcase_20 AC 408 ms
77,268 KB
testcase_21 AC 460 ms
77,312 KB
testcase_22 AC 85 ms
76,032 KB
testcase_23 AC 252 ms
76,544 KB
testcase_24 AC 64 ms
67,200 KB
testcase_25 AC 60 ms
65,792 KB
testcase_26 AC 55 ms
62,208 KB
testcase_27 AC 59 ms
64,256 KB
testcase_28 AC 61 ms
65,280 KB
testcase_29 AC 413 ms
77,056 KB
testcase_30 AC 474 ms
76,800 KB
testcase_31 AC 41 ms
52,224 KB
testcase_32 AC 42 ms
52,224 KB
testcase_33 AC 53 ms
60,672 KB
testcase_34 AC 371 ms
77,180 KB
testcase_35 AC 248 ms
76,928 KB
testcase_36 AC 476 ms
77,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,V,C = map(int, input().split())
VW = [list(map(int, input().split())) for _ in range(N)]
DP = [0]*(V+1)
for v,w in VW:
    w+=C
    for i in reversed(range(V)):
        if DP[i]>0 and i+v<=V and DP[i+v]<DP[i]+w:
            DP[i+v]=DP[i]+w
    if v<=V and DP[v]<w:
        DP[v]=w
for v,w in VW:
    for i in range(V):
        if DP[i]>0 and i+v<=V and DP[i+v]<DP[i]+w:
            DP[i+v]=DP[i]+w
print(max(DP))
0