結果

問題 No.1947 質より種類数
ユーザー H20H20
提出日時 2022-04-10 18:44:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 600 ms / 2,000 ms
コード長 555 bytes
コンパイル時間 380 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 77,568 KB
最終ジャッジ日時 2024-06-01 04:12:34
合計ジャッジ時間 8,470 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 AC 57 ms
65,792 KB
testcase_05 AC 55 ms
65,152 KB
testcase_06 AC 56 ms
64,640 KB
testcase_07 AC 56 ms
65,536 KB
testcase_08 AC 58 ms
65,792 KB
testcase_09 AC 71 ms
73,344 KB
testcase_10 AC 66 ms
70,400 KB
testcase_11 AC 96 ms
75,904 KB
testcase_12 AC 83 ms
75,776 KB
testcase_13 AC 65 ms
69,376 KB
testcase_14 AC 237 ms
76,928 KB
testcase_15 AC 147 ms
76,364 KB
testcase_16 AC 308 ms
76,860 KB
testcase_17 AC 372 ms
77,056 KB
testcase_18 AC 600 ms
77,288 KB
testcase_19 AC 541 ms
77,056 KB
testcase_20 AC 428 ms
77,356 KB
testcase_21 AC 494 ms
77,224 KB
testcase_22 AC 87 ms
75,904 KB
testcase_23 AC 263 ms
76,928 KB
testcase_24 AC 59 ms
66,688 KB
testcase_25 AC 58 ms
65,280 KB
testcase_26 AC 51 ms
61,952 KB
testcase_27 AC 59 ms
64,000 KB
testcase_28 AC 56 ms
64,384 KB
testcase_29 AC 418 ms
77,056 KB
testcase_30 AC 465 ms
77,056 KB
testcase_31 AC 39 ms
52,096 KB
testcase_32 AC 40 ms
52,872 KB
testcase_33 AC 48 ms
60,600 KB
testcase_34 AC 412 ms
77,568 KB
testcase_35 AC 271 ms
77,056 KB
testcase_36 AC 471 ms
77,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,V,C = map(int, input().split())
VW = [list(map(int, input().split())) for _ in range(N)]
if not (1<=N<=5000 and 1<=V<=5000 and 1<=C<=5000):
    exit()
for v,w in VW:
    if 1<=v<=5000 and 1<=w<=5000:
        continue
    exit()

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