結果

問題 No.527 ナップサック容量問題
ユーザー tktk_snsntktk_snsn
提出日時 2021-02-10 20:09:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 483 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 81,864 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-07-08 07:34:46
合計ジャッジ時間 4,452 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
65,024 KB
testcase_01 AC 50 ms
66,176 KB
testcase_02 AC 48 ms
63,360 KB
testcase_03 AC 55 ms
68,352 KB
testcase_04 AC 44 ms
60,800 KB
testcase_05 AC 80 ms
75,648 KB
testcase_06 AC 106 ms
75,904 KB
testcase_07 AC 94 ms
75,904 KB
testcase_08 AC 76 ms
75,904 KB
testcase_09 AC 44 ms
60,544 KB
testcase_10 AC 102 ms
76,032 KB
testcase_11 AC 88 ms
75,776 KB
testcase_12 AC 81 ms
75,904 KB
testcase_13 AC 103 ms
75,648 KB
testcase_14 AC 76 ms
75,904 KB
testcase_15 AC 82 ms
75,648 KB
testcase_16 AC 51 ms
66,688 KB
testcase_17 AC 76 ms
75,776 KB
testcase_18 AC 81 ms
75,648 KB
testcase_19 AC 55 ms
69,376 KB
testcase_20 AC 74 ms
75,776 KB
testcase_21 AC 111 ms
75,648 KB
testcase_22 AC 91 ms
76,032 KB
testcase_23 AC 107 ms
75,648 KB
testcase_24 AC 65 ms
75,776 KB
testcase_25 AC 92 ms
75,904 KB
testcase_26 AC 91 ms
76,032 KB
testcase_27 AC 86 ms
75,648 KB
testcase_28 AC 82 ms
76,160 KB
testcase_29 AC 110 ms
75,904 KB
testcase_30 AC 58 ms
74,752 KB
testcase_31 AC 75 ms
75,904 KB
testcase_32 AC 78 ms
75,648 KB
testcase_33 AC 75 ms
76,416 KB
testcase_34 AC 80 ms
75,648 KB
testcase_35 AC 85 ms
75,776 KB
testcase_36 AC 49 ms
65,408 KB
testcase_37 AC 79 ms
76,032 KB
testcase_38 AC 81 ms
75,776 KB
testcase_39 AC 78 ms
76,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)
U = 10 ** 5 + 10

N = int(input())
dp = [0] * (U + 1)
Wsum = 0
for _ in range(N):
    v, w = map(int, input().split())
    Wsum += w
    for i in reversed(range(w, U + 1)):
        dp[i] = max(dp[i], dp[i - w] + v)
V = int(input())

wmin = U
wmax = 0
for i in range(1, U + 1):
    if dp[i] == V:
        wmin = min(wmin, i)
        wmax = max(wmax, i)
if wmax >= U:
    wmax = "inf"

print(wmin)
print(wmax)
0