結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
61,820 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 48 ms
62,780 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 76 ms
63,436 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 79 ms
63,728 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 59 ms
62,196 KB
testcase_15 AC 73 ms
62,196 KB
testcase_16 AC 50 ms
60,712 KB
testcase_17 AC 69 ms
61,976 KB
testcase_18 AC 71 ms
61,772 KB
testcase_19 AC 50 ms
61,956 KB
testcase_20 AC 67 ms
61,268 KB
testcase_21 AC 83 ms
61,284 KB
testcase_22 AC 68 ms
61,832 KB
testcase_23 AC 83 ms
62,144 KB
testcase_24 AC 54 ms
61,724 KB
testcase_25 WA -
testcase_26 AC 65 ms
61,816 KB
testcase_27 AC 67 ms
62,928 KB
testcase_28 WA -
testcase_29 AC 82 ms
61,968 KB
testcase_30 WA -
testcase_31 AC 64 ms
61,164 KB
testcase_32 AC 67 ms
62,220 KB
testcase_33 AC 66 ms
61,344 KB
testcase_34 AC 69 ms
61,560 KB
testcase_35 AC 73 ms
61,960 KB
testcase_36 WA -
testcase_37 AC 67 ms
62,348 KB
testcase_38 AC 63 ms
62,428 KB
testcase_39 AC 65 ms
61,836 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