結果

問題 No.1947 質より種類数
ユーザー lllllll88938494lllllll88938494
提出日時 2022-09-10 19:01:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,040 ms / 2,000 ms
コード長 428 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,548 KB
実行使用メモリ 272,844 KB
最終ジャッジ日時 2024-11-27 02:44:07
合計ジャッジ時間 12,585 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,048 KB
testcase_01 AC 38 ms
52,208 KB
testcase_02 AC 38 ms
52,276 KB
testcase_03 AC 38 ms
52,320 KB
testcase_04 AC 66 ms
67,560 KB
testcase_05 AC 64 ms
67,628 KB
testcase_06 AC 64 ms
67,892 KB
testcase_07 AC 64 ms
67,664 KB
testcase_08 AC 72 ms
69,588 KB
testcase_09 AC 87 ms
73,104 KB
testcase_10 AC 77 ms
70,624 KB
testcase_11 AC 136 ms
86,624 KB
testcase_12 AC 95 ms
74,084 KB
testcase_13 AC 73 ms
70,364 KB
testcase_14 AC 367 ms
131,096 KB
testcase_15 AC 233 ms
104,976 KB
testcase_16 AC 540 ms
157,096 KB
testcase_17 AC 675 ms
180,260 KB
testcase_18 AC 1,040 ms
261,888 KB
testcase_19 AC 905 ms
238,464 KB
testcase_20 AC 690 ms
198,016 KB
testcase_21 AC 874 ms
220,260 KB
testcase_22 AC 120 ms
84,608 KB
testcase_23 AC 413 ms
138,880 KB
testcase_24 AC 72 ms
66,304 KB
testcase_25 AC 72 ms
67,328 KB
testcase_26 AC 67 ms
65,920 KB
testcase_27 AC 70 ms
67,200 KB
testcase_28 AC 74 ms
68,352 KB
testcase_29 AC 899 ms
272,512 KB
testcase_30 AC 924 ms
272,640 KB
testcase_31 AC 40 ms
51,968 KB
testcase_32 AC 41 ms
52,224 KB
testcase_33 AC 55 ms
62,244 KB
testcase_34 AC 672 ms
272,384 KB
testcase_35 AC 377 ms
272,844 KB
testcase_36 AC 813 ms
272,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp=[[-1]*(V+1) for i in range(N+1)]
dp[0][0] = 0

for i in range(N):
    v,w=map(int,input().split())
    for j in range(V+1):
        if dp[i][j] == -1:
            continue
        if j + v <= V:
            dp[i][j+v] = max(dp[i][j+v],dp[i][j] + w)
            dp[i+1][j+v] = max(dp[i][j] + w + C , dp[i+1][j+v])
        dp[i+1][j] = max(dp[i][j],dp[i+1][j]) 
        
print(max(dp[-1]))

    
0