結果

問題 No.1947 質より種類数
ユーザー stngstng
提出日時 2022-05-21 19:04:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 783 ms / 2,000 ms
コード長 535 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 79,744 KB
最終ジャッジ日時 2024-09-20 12:04:41
合計ジャッジ時間 10,275 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,584 KB
testcase_01 AC 43 ms
52,096 KB
testcase_02 AC 44 ms
51,968 KB
testcase_03 AC 44 ms
52,096 KB
testcase_04 AC 75 ms
68,224 KB
testcase_05 AC 71 ms
67,328 KB
testcase_06 AC 73 ms
67,456 KB
testcase_07 AC 71 ms
67,456 KB
testcase_08 AC 79 ms
70,144 KB
testcase_09 AC 94 ms
75,776 KB
testcase_10 AC 84 ms
71,680 KB
testcase_11 AC 127 ms
76,416 KB
testcase_12 AC 109 ms
75,904 KB
testcase_13 AC 83 ms
71,424 KB
testcase_14 AC 308 ms
77,384 KB
testcase_15 AC 189 ms
76,544 KB
testcase_16 AC 395 ms
77,952 KB
testcase_17 AC 474 ms
78,208 KB
testcase_18 AC 783 ms
79,232 KB
testcase_19 AC 682 ms
78,720 KB
testcase_20 AC 545 ms
78,208 KB
testcase_21 AC 616 ms
78,592 KB
testcase_22 AC 109 ms
76,532 KB
testcase_23 AC 342 ms
77,280 KB
testcase_24 AC 74 ms
68,352 KB
testcase_25 AC 75 ms
67,840 KB
testcase_26 AC 69 ms
65,920 KB
testcase_27 AC 72 ms
68,096 KB
testcase_28 AC 81 ms
70,400 KB
testcase_29 AC 518 ms
79,232 KB
testcase_30 AC 462 ms
79,232 KB
testcase_31 AC 43 ms
52,096 KB
testcase_32 AC 42 ms
51,712 KB
testcase_33 AC 61 ms
62,336 KB
testcase_34 AC 783 ms
79,744 KB
testcase_35 AC 365 ms
79,360 KB
testcase_36 AC 456 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