結果

問題 No.1947 質より種類数
ユーザー SidewaysOwlSidewaysOwl
提出日時 2022-05-21 18:18:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 705 ms / 2,000 ms
コード長 536 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 79,616 KB
最終ジャッジ日時 2024-09-20 12:02:35
合計ジャッジ時間 9,069 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 AC 36 ms
51,584 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 AC 63 ms
67,840 KB
testcase_05 AC 70 ms
67,456 KB
testcase_06 AC 63 ms
67,584 KB
testcase_07 AC 64 ms
67,840 KB
testcase_08 AC 69 ms
70,016 KB
testcase_09 AC 81 ms
75,776 KB
testcase_10 AC 73 ms
71,808 KB
testcase_11 AC 113 ms
76,288 KB
testcase_12 AC 96 ms
76,032 KB
testcase_13 AC 73 ms
71,296 KB
testcase_14 AC 279 ms
77,260 KB
testcase_15 AC 173 ms
76,800 KB
testcase_16 AC 351 ms
77,560 KB
testcase_17 AC 423 ms
78,336 KB
testcase_18 AC 702 ms
78,976 KB
testcase_19 AC 622 ms
78,848 KB
testcase_20 AC 481 ms
77,952 KB
testcase_21 AC 555 ms
78,336 KB
testcase_22 AC 95 ms
76,160 KB
testcase_23 AC 302 ms
77,540 KB
testcase_24 AC 68 ms
68,224 KB
testcase_25 AC 64 ms
67,968 KB
testcase_26 AC 59 ms
65,792 KB
testcase_27 AC 65 ms
67,840 KB
testcase_28 AC 71 ms
70,400 KB
testcase_29 AC 452 ms
79,616 KB
testcase_30 AC 411 ms
79,488 KB
testcase_31 AC 38 ms
51,712 KB
testcase_32 AC 37 ms
51,840 KB
testcase_33 AC 53 ms
62,208 KB
testcase_34 AC 705 ms
79,360 KB
testcase_35 AC 306 ms
79,232 KB
testcase_36 AC 394 ms
79,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

vw = [list(map(int,input().split())) for _ in range(n)]
dp = [-1] * (V+1)
dp[0] = 0
for v,w in vw:
    n_dp = [-1] * (V+1)
    for i in range(V+1):
        if dp[i] >= 0:
            if i + v <= V:
                n_dp[i+v] = max(n_dp[i+v],dp[i] + w+c)
    for i in range(V+1):
        if n_dp[i] >= 0:
            if i + v <= V:
                n_dp[i+v] = max(n_dp[i+v],n_dp[i] + w)
    
    for i in range(V+1):
        n_dp[i] = max(dp[i],n_dp[i])
#     print(n_dp)
    dp = n_dp[::]
print(max(dp))
0