結果

問題 No.1947 質より種類数
ユーザー ronpooronpoo
提出日時 2023-11-21 16:47:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,456 ms / 2,000 ms
コード長 395 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 431,136 KB
最終ジャッジ日時 2024-09-26 07:14:49
合計ジャッジ時間 14,837 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 34 ms
51,584 KB
testcase_03 AC 36 ms
51,840 KB
testcase_04 AC 73 ms
73,344 KB
testcase_05 AC 65 ms
71,808 KB
testcase_06 AC 78 ms
76,544 KB
testcase_07 AC 76 ms
73,740 KB
testcase_08 AC 73 ms
74,988 KB
testcase_09 AC 97 ms
80,060 KB
testcase_10 AC 94 ms
79,112 KB
testcase_11 AC 160 ms
86,364 KB
testcase_12 AC 119 ms
82,944 KB
testcase_13 AC 87 ms
78,336 KB
testcase_14 AC 421 ms
178,624 KB
testcase_15 AC 275 ms
116,932 KB
testcase_16 AC 575 ms
225,344 KB
testcase_17 AC 651 ms
284,580 KB
testcase_18 AC 1,456 ms
431,136 KB
testcase_19 AC 1,379 ms
337,336 KB
testcase_20 AC 842 ms
314,440 KB
testcase_21 AC 978 ms
339,072 KB
testcase_22 AC 120 ms
84,352 KB
testcase_23 AC 568 ms
200,576 KB
testcase_24 AC 70 ms
73,208 KB
testcase_25 AC 67 ms
71,516 KB
testcase_26 AC 60 ms
69,428 KB
testcase_27 AC 64 ms
71,300 KB
testcase_28 AC 71 ms
74,276 KB
testcase_29 AC 1,004 ms
429,552 KB
testcase_30 AC 1,010 ms
417,372 KB
testcase_31 AC 36 ms
52,352 KB
testcase_32 AC 36 ms
52,224 KB
testcase_33 AC 47 ms
61,952 KB
testcase_34 AC 764 ms
416,256 KB
testcase_35 AC 662 ms
421,252 KB
testcase_36 AC 932 ms
419,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, C = map(int, input().split())
VW = [list(map(int, input().split())) for _ in range(N)]

dp = [[-float('inf')] * (M+1) for _ in range(N+1)]
dp[0][0] = 0
for i in range(N):
    v, w = VW[i]
    for j in range(M+1):
        if j + v <= M:
            dp[i+1][j+v] = max(dp[i+1][j+v], dp[i+1][j] + w, dp[i][j] + w + C)
        dp[i+1][j] = max(dp[i+1][j], dp[i][j])
ans = max(dp[N])
print(ans)
0