結果
問題 | No.2492 Knapsack Problem? |
ユーザー | NP |
提出日時 | 2024-01-20 20:03:08 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 401 bytes |
コンパイル時間 | 274 ms |
コンパイル使用メモリ | 82,636 KB |
実行使用メモリ | 72,448 KB |
最終ジャッジ日時 | 2024-09-28 05:45:03 |
合計ジャッジ時間 | 1,440 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
51,956 KB |
testcase_01 | AC | 42 ms
51,876 KB |
testcase_02 | WA | - |
testcase_03 | AC | 39 ms
52,916 KB |
testcase_04 | AC | 39 ms
52,836 KB |
testcase_05 | AC | 39 ms
52,068 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
ソースコード
N, W = map(int, input().split()) vw = [list(map(int, input().split())) for _ in range(N)] dp = [[0] * (W + 1) for _ in range(N + 1)] for i in range(1, N + 1): for j in range(W + 1): if j >= vw[i-1][1]: dp[i][j] = max(dp[i-1][j], dp[i-1][j-vw[i-1][1]] + vw[i-1][0]) else: dp[i][j] = dp[i-1][j] if dp[N][W] == 0: print(-1) else: print(dp[N][W])