結果

問題 No.1947 質より種類数
ユーザー 👑 KazunKazun
提出日時 2022-05-20 21:41:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 781 ms / 2,000 ms
コード長 301 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 78,684 KB
最終ジャッジ日時 2024-09-20 07:38:28
合計ジャッジ時間 8,126 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 AC 34 ms
51,968 KB
testcase_02 AC 34 ms
52,224 KB
testcase_03 AC 34 ms
51,840 KB
testcase_04 AC 71 ms
73,088 KB
testcase_05 AC 60 ms
68,608 KB
testcase_06 AC 69 ms
72,448 KB
testcase_07 AC 64 ms
69,888 KB
testcase_08 AC 66 ms
70,912 KB
testcase_09 AC 89 ms
75,944 KB
testcase_10 AC 91 ms
75,904 KB
testcase_11 AC 123 ms
76,864 KB
testcase_12 AC 102 ms
75,904 KB
testcase_13 AC 81 ms
75,904 KB
testcase_14 AC 226 ms
77,252 KB
testcase_15 AC 170 ms
76,908 KB
testcase_16 AC 352 ms
77,324 KB
testcase_17 AC 503 ms
77,624 KB
testcase_18 AC 686 ms
78,644 KB
testcase_19 AC 781 ms
78,296 KB
testcase_20 AC 368 ms
77,828 KB
testcase_21 AC 454 ms
77,972 KB
testcase_22 AC 93 ms
75,904 KB
testcase_23 AC 295 ms
77,236 KB
testcase_24 AC 66 ms
71,808 KB
testcase_25 AC 64 ms
70,784 KB
testcase_26 AC 60 ms
68,480 KB
testcase_27 AC 62 ms
69,248 KB
testcase_28 AC 66 ms
70,528 KB
testcase_29 AC 358 ms
78,208 KB
testcase_30 AC 337 ms
78,364 KB
testcase_31 AC 36 ms
51,584 KB
testcase_32 AC 36 ms
51,840 KB
testcase_33 AC 43 ms
60,288 KB
testcase_34 AC 342 ms
78,684 KB
testcase_35 AC 217 ms
78,244 KB
testcase_36 AC 322 ms
78,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,V,C=map(int,input().split())

inf=float("inf")
DP=[-inf]*(V+1); DP[0]=0

for i in range(N):
    v,w=map(int,input().split())

    E=DP
    DP=[-inf]*(V+1)

    for j in range(V+1):
        if j<v:
            DP[j]=E[j]
        else:
            DP[j]=max(E[j],DP[j-v]+w,E[j-v]+w+C)

print(max(DP))
0