結果

問題 No.527 ナップサック容量問題
ユーザー irumo8202irumo8202
提出日時 2022-01-28 11:25:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 472 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 67,328 KB
最終ジャッジ日時 2024-06-08 18:01:05
合計ジャッジ時間 4,844 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
60,160 KB
testcase_01 AC 48 ms
60,160 KB
testcase_02 AC 49 ms
60,288 KB
testcase_03 AC 52 ms
61,056 KB
testcase_04 AC 39 ms
52,864 KB
testcase_05 AC 73 ms
65,664 KB
testcase_06 AC 121 ms
67,200 KB
testcase_07 AC 95 ms
65,536 KB
testcase_08 AC 73 ms
65,536 KB
testcase_09 AC 42 ms
52,736 KB
testcase_10 AC 119 ms
66,432 KB
testcase_11 AC 89 ms
66,944 KB
testcase_12 AC 75 ms
66,432 KB
testcase_13 AC 126 ms
67,328 KB
testcase_14 AC 66 ms
64,768 KB
testcase_15 AC 82 ms
65,792 KB
testcase_16 AC 49 ms
60,416 KB
testcase_17 AC 74 ms
65,536 KB
testcase_18 AC 79 ms
65,408 KB
testcase_19 AC 53 ms
61,440 KB
testcase_20 AC 67 ms
65,152 KB
testcase_21 AC 143 ms
66,048 KB
testcase_22 AC 96 ms
65,024 KB
testcase_23 AC 131 ms
66,560 KB
testcase_24 AC 60 ms
63,744 KB
testcase_25 AC 91 ms
64,640 KB
testcase_26 AC 88 ms
66,176 KB
testcase_27 AC 87 ms
65,280 KB
testcase_28 AC 81 ms
65,024 KB
testcase_29 AC 129 ms
66,304 KB
testcase_30 AC 51 ms
60,800 KB
testcase_31 AC 65 ms
63,232 KB
testcase_32 AC 69 ms
63,360 KB
testcase_33 AC 64 ms
63,232 KB
testcase_34 AC 71 ms
63,232 KB
testcase_35 AC 85 ms
66,176 KB
testcase_36 AC 49 ms
60,160 KB
testcase_37 AC 76 ms
66,304 KB
testcase_38 AC 82 ms
66,048 KB
testcase_39 AC 78 ms
65,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from cmath import inf

N = int(input())

dp = [-inf] * (1000 * N + 1)
dp[0] = 0

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

for i in range(1, 1000 * N + 1):
    dp[i] = max(dp[i], dp[i - 1])

V = int(input())
mi, mx = inf, -1

for i in range(1, 1000 * N + 1):
    if dp[i] == V:
        mi = min(mi, i)
        mx = max(mx, i)

print(mi)
print(mx if mx != 1000 * N else inf)
0