結果

問題 No.527 ナップサック容量問題
ユーザー nanaenanae
提出日時 2017-06-09 22:37:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 738 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 62,380 KB
最終ジャッジ日時 2024-09-22 15:28:15
合計ジャッジ時間 3,904 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
59,332 KB
testcase_01 AC 45 ms
59,508 KB
testcase_02 AC 42 ms
59,504 KB
testcase_03 AC 46 ms
60,128 KB
testcase_04 AC 44 ms
59,560 KB
testcase_05 AC 62 ms
60,916 KB
testcase_06 AC 85 ms
61,100 KB
testcase_07 AC 77 ms
61,840 KB
testcase_08 AC 60 ms
62,380 KB
testcase_09 AC 42 ms
59,912 KB
testcase_10 AC 90 ms
61,072 KB
testcase_11 AC 71 ms
60,476 KB
testcase_12 AC 64 ms
60,644 KB
testcase_13 AC 86 ms
61,256 KB
testcase_14 AC 60 ms
61,800 KB
testcase_15 AC 68 ms
61,884 KB
testcase_16 AC 46 ms
61,836 KB
testcase_17 AC 64 ms
61,304 KB
testcase_18 AC 66 ms
60,636 KB
testcase_19 AC 48 ms
60,712 KB
testcase_20 AC 60 ms
60,972 KB
testcase_21 AC 94 ms
61,484 KB
testcase_22 AC 76 ms
60,888 KB
testcase_23 AC 91 ms
60,816 KB
testcase_24 AC 53 ms
60,908 KB
testcase_25 AC 73 ms
61,508 KB
testcase_26 AC 72 ms
62,012 KB
testcase_27 AC 72 ms
61,328 KB
testcase_28 AC 68 ms
60,824 KB
testcase_29 AC 92 ms
60,672 KB
testcase_30 AC 45 ms
59,804 KB
testcase_31 AC 62 ms
61,520 KB
testcase_32 AC 65 ms
61,016 KB
testcase_33 AC 63 ms
61,320 KB
testcase_34 AC 68 ms
60,536 KB
testcase_35 AC 71 ms
61,636 KB
testcase_36 AC 45 ms
61,168 KB
testcase_37 AC 64 ms
60,988 KB
testcase_38 AC 68 ms
60,944 KB
testcase_39 AC 67 ms
61,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

lim = 10**5

def solve():
    n = int(input())

    v = [0] * n
    w = [0] * n

    for i in range(n):
        vi, wi = map(int, input().split())
        v[i] = vi
        w[i] = wi

    V = int(input())

    dp = [0] * (lim + 1)

    for i in range(n):
        for j in range(lim, w[i] - 1, -1):
            dp[j] = max(dp[j], dp[j - w[i]] + v[i])

    min_a = lim + 1
    max_a = 0

    for i in range(lim + 1):
        if dp[i] == V:
            min_a = i
            break

    for i in range(lim, -1, -1):
        if dp[i] == V:
            max_a = i
            break

    print(min_a if min_a > 0 else 1)

    if sum(v) == V:
        print('inf')
    else:
        print(max_a)


if __name__ == '__main__':
    solve()
0