結果

問題 No.1947 質より種類数
ユーザー H20H20
提出日時 2022-04-10 18:38:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 555 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,160 KB
最終ジャッジ日時 2024-06-01 04:12:48
合計ジャッジ時間 3,940 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 59 ms
65,536 KB
testcase_05 AC 58 ms
65,152 KB
testcase_06 AC 59 ms
64,640 KB
testcase_07 AC 62 ms
65,536 KB
testcase_08 AC 61 ms
65,792 KB
testcase_09 AC 71 ms
73,216 KB
testcase_10 AC 68 ms
70,144 KB
testcase_11 AC 99 ms
75,904 KB
testcase_12 AC 83 ms
75,776 KB
testcase_13 AC 66 ms
69,504 KB
testcase_14 WA -
testcase_15 AC 147 ms
76,160 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 89 ms
75,912 KB
testcase_23 WA -
testcase_24 AC 59 ms
66,688 KB
testcase_25 AC 56 ms
65,280 KB
testcase_26 AC 50 ms
61,824 KB
testcase_27 AC 55 ms
63,488 KB
testcase_28 AC 54 ms
64,640 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 40 ms
51,968 KB
testcase_32 AC 40 ms
51,968 KB
testcase_33 AC 48 ms
60,800 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,V,C = map(int, input().split())
VW = [list(map(int, input().split())) for _ in range(N)]
if not (1<=N<=1000 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