結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
60,348 KB
testcase_01 AC 53 ms
60,212 KB
testcase_02 AC 48 ms
60,376 KB
testcase_03 AC 52 ms
61,748 KB
testcase_04 AC 45 ms
59,712 KB
testcase_05 AC 72 ms
61,956 KB
testcase_06 AC 86 ms
62,440 KB
testcase_07 AC 78 ms
62,424 KB
testcase_08 AC 63 ms
62,680 KB
testcase_09 AC 48 ms
59,816 KB
testcase_10 AC 84 ms
63,160 KB
testcase_11 AC 74 ms
62,384 KB
testcase_12 AC 68 ms
62,672 KB
testcase_13 AC 84 ms
62,004 KB
testcase_14 AC 63 ms
61,428 KB
testcase_15 AC 79 ms
62,552 KB
testcase_16 AC 51 ms
60,844 KB
testcase_17 AC 72 ms
62,764 KB
testcase_18 AC 79 ms
62,216 KB
testcase_19 AC 53 ms
61,888 KB
testcase_20 AC 68 ms
61,056 KB
testcase_21 AC 89 ms
61,296 KB
testcase_22 AC 75 ms
61,248 KB
testcase_23 AC 87 ms
62,704 KB
testcase_24 AC 57 ms
62,732 KB
testcase_25 AC 86 ms
61,964 KB
testcase_26 AC 71 ms
61,340 KB
testcase_27 AC 72 ms
61,792 KB
testcase_28 AC 68 ms
61,620 KB
testcase_29 AC 88 ms
61,744 KB
testcase_30 AC 50 ms
59,828 KB
testcase_31 AC 65 ms
61,560 KB
testcase_32 AC 68 ms
60,800 KB
testcase_33 AC 65 ms
62,280 KB
testcase_34 AC 69 ms
61,856 KB
testcase_35 AC 71 ms
62,412 KB
testcase_36 AC 51 ms
61,708 KB
testcase_37 AC 69 ms
62,856 KB
testcase_38 AC 68 ms
62,328 KB
testcase_39 AC 69 ms
62,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
W = 10 ** 5 + 10
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(1, W + 1):
    if dp[i] == V:
        if min_ == -1:
            min_ = i
        max_ = i

print(min_)
if max_ == W:
    max_ = "inf"
print(max_)
0