結果

問題 No.527 ナップサック容量問題
ユーザー 👑 rin204rin204
提出日時 2022-07-04 16:46:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 344 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 63,352 KB
最終ジャッジ日時 2024-05-08 06:13:45
合計ジャッジ時間 3,905 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
59,904 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 42 ms
61,056 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 69 ms
61,568 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 75 ms
61,696 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 54 ms
61,056 KB
testcase_15 AC 69 ms
61,184 KB
testcase_16 AC 44 ms
60,544 KB
testcase_17 AC 64 ms
61,056 KB
testcase_18 AC 67 ms
61,056 KB
testcase_19 AC 45 ms
61,568 KB
testcase_20 AC 58 ms
60,416 KB
testcase_21 AC 77 ms
60,800 KB
testcase_22 AC 65 ms
60,800 KB
testcase_23 AC 75 ms
60,928 KB
testcase_24 AC 48 ms
60,928 KB
testcase_25 WA -
testcase_26 AC 61 ms
61,056 KB
testcase_27 AC 62 ms
60,800 KB
testcase_28 WA -
testcase_29 AC 76 ms
61,056 KB
testcase_30 WA -
testcase_31 AC 56 ms
61,184 KB
testcase_32 AC 57 ms
61,056 KB
testcase_33 AC 55 ms
61,184 KB
testcase_34 AC 62 ms
61,056 KB
testcase_35 AC 63 ms
61,056 KB
testcase_36 WA -
testcase_37 AC 58 ms
61,696 KB
testcase_38 AC 59 ms
61,440 KB
testcase_39 AC 62 ms
61,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
W = 10 ** 5
dp = [0] * (W + 1)
for _ in range(n):
    v, w = map(int, input().split())
    for i in range(W, w - 1, -1):
        dp[i] = max(dp[i], dp[i - w] + v)
min_ = -1
max_ = -1
V = int(input())
for i in range(W + 1):
    if dp[i] == V:
        if min_ == -1:
            min_ = i
        max_ = i

print(min_)
print(max_)
0