結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
60,656 KB
testcase_01 AC 44 ms
60,144 KB
testcase_02 AC 42 ms
60,504 KB
testcase_03 AC 45 ms
62,320 KB
testcase_04 AC 39 ms
60,072 KB
testcase_05 AC 63 ms
61,692 KB
testcase_06 AC 76 ms
62,740 KB
testcase_07 AC 66 ms
61,540 KB
testcase_08 AC 56 ms
61,684 KB
testcase_09 AC 41 ms
60,088 KB
testcase_10 AC 72 ms
62,360 KB
testcase_11 AC 63 ms
62,224 KB
testcase_12 AC 61 ms
63,340 KB
testcase_13 AC 77 ms
63,444 KB
testcase_14 AC 53 ms
61,900 KB
testcase_15 AC 67 ms
61,220 KB
testcase_16 AC 45 ms
60,704 KB
testcase_17 AC 64 ms
62,540 KB
testcase_18 AC 68 ms
61,468 KB
testcase_19 AC 46 ms
62,592 KB
testcase_20 AC 57 ms
61,364 KB
testcase_21 AC 76 ms
61,732 KB
testcase_22 AC 64 ms
61,292 KB
testcase_23 AC 75 ms
62,592 KB
testcase_24 AC 50 ms
61,544 KB
testcase_25 AC 74 ms
61,908 KB
testcase_26 AC 61 ms
61,728 KB
testcase_27 AC 60 ms
62,208 KB
testcase_28 AC 58 ms
62,592 KB
testcase_29 AC 80 ms
61,660 KB
testcase_30 AC 46 ms
61,616 KB
testcase_31 AC 57 ms
61,956 KB
testcase_32 AC 58 ms
61,400 KB
testcase_33 AC 54 ms
61,840 KB
testcase_34 AC 60 ms
61,904 KB
testcase_35 AC 62 ms
62,408 KB
testcase_36 AC 43 ms
61,756 KB
testcase_37 AC 57 ms
62,984 KB
testcase_38 AC 61 ms
62,096 KB
testcase_39 AC 63 ms
61,372 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