結果

問題 No.1947 質より種類数
ユーザー abababab
提出日時 2022-05-20 23:38:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 742 ms / 2,000 ms
コード長 406 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 77,696 KB
最終ジャッジ日時 2024-09-20 10:04:46
合計ジャッジ時間 8,755 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 34 ms
52,096 KB
testcase_03 AC 34 ms
51,840 KB
testcase_04 AC 69 ms
73,216 KB
testcase_05 AC 60 ms
69,632 KB
testcase_06 AC 67 ms
72,704 KB
testcase_07 AC 66 ms
71,168 KB
testcase_08 AC 66 ms
71,296 KB
testcase_09 AC 84 ms
75,832 KB
testcase_10 AC 83 ms
75,920 KB
testcase_11 AC 117 ms
76,560 KB
testcase_12 AC 97 ms
76,032 KB
testcase_13 AC 80 ms
76,284 KB
testcase_14 AC 262 ms
76,984 KB
testcase_15 AC 167 ms
76,432 KB
testcase_16 AC 436 ms
77,168 KB
testcase_17 AC 492 ms
77,312 KB
testcase_18 AC 742 ms
77,312 KB
testcase_19 AC 716 ms
77,568 KB
testcase_20 AC 508 ms
77,236 KB
testcase_21 AC 602 ms
77,440 KB
testcase_22 AC 102 ms
76,544 KB
testcase_23 AC 367 ms
77,312 KB
testcase_24 AC 66 ms
70,656 KB
testcase_25 AC 64 ms
70,272 KB
testcase_26 AC 59 ms
67,808 KB
testcase_27 AC 64 ms
69,504 KB
testcase_28 AC 71 ms
72,832 KB
testcase_29 AC 411 ms
77,512 KB
testcase_30 AC 373 ms
77,440 KB
testcase_31 AC 36 ms
52,096 KB
testcase_32 AC 34 ms
51,968 KB
testcase_33 AC 45 ms
61,568 KB
testcase_34 AC 493 ms
77,696 KB
testcase_35 AC 181 ms
77,548 KB
testcase_36 AC 363 ms
77,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, V, C = map(int, input().split())
vw = [tuple(map(int, input().split())) for _ in range(n)]

INF = float('inf')
ndp = [-INF] * (V + 1)
ndp[0] = 0

for v, w in vw:
    dp = ndp[:]
    for i in range(V + 1):
        if i + v <= V:
            ndp[i + v] = max(ndp[i + v], dp[i] + w + C)
    for i in range(V + 1):
        if i + v <= V:
            ndp[i + v] = max(ndp[i + v], ndp[i] + w)

print(max(ndp))
0