結果

問題 No.1947 質より種類数
ユーザー 👑 rin204rin204
提出日時 2022-05-20 21:47:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 413 ms / 2,000 ms
コード長 307 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-09-20 07:46:32
合計ジャッジ時間 6,221 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 38 ms
51,456 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 57 ms
64,768 KB
testcase_05 AC 53 ms
62,592 KB
testcase_06 AC 55 ms
63,744 KB
testcase_07 AC 57 ms
62,720 KB
testcase_08 AC 57 ms
64,512 KB
testcase_09 AC 62 ms
67,712 KB
testcase_10 AC 59 ms
65,920 KB
testcase_11 AC 83 ms
76,756 KB
testcase_12 AC 70 ms
70,144 KB
testcase_13 AC 58 ms
65,536 KB
testcase_14 AC 175 ms
76,928 KB
testcase_15 AC 102 ms
76,416 KB
testcase_16 AC 215 ms
76,672 KB
testcase_17 AC 189 ms
76,996 KB
testcase_18 AC 413 ms
77,184 KB
testcase_19 AC 389 ms
77,440 KB
testcase_20 AC 199 ms
77,056 KB
testcase_21 AC 332 ms
76,672 KB
testcase_22 AC 75 ms
76,704 KB
testcase_23 AC 188 ms
76,544 KB
testcase_24 AC 53 ms
63,232 KB
testcase_25 AC 55 ms
63,616 KB
testcase_26 AC 52 ms
63,616 KB
testcase_27 AC 52 ms
63,360 KB
testcase_28 AC 59 ms
65,408 KB
testcase_29 AC 326 ms
77,184 KB
testcase_30 AC 252 ms
76,800 KB
testcase_31 AC 38 ms
51,584 KB
testcase_32 AC 41 ms
51,840 KB
testcase_33 AC 48 ms
59,648 KB
testcase_34 AC 385 ms
76,928 KB
testcase_35 AC 186 ms
76,800 KB
testcase_36 AC 232 ms
76,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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