結果

問題 No.527 ナップサック容量問題
ユーザー ああいいああいい
提出日時 2022-03-30 18:58:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 493 bytes
コンパイル時間 416 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 101,248 KB
最終ジャッジ日時 2024-11-15 09:43:19
合計ジャッジ時間 4,537 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 44 ms
59,008 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 49 ms
61,696 KB
testcase_04 AC 38 ms
52,352 KB
testcase_05 AC 59 ms
67,968 KB
testcase_06 AC 101 ms
92,416 KB
testcase_07 AC 84 ms
81,536 KB
testcase_08 AC 58 ms
66,304 KB
testcase_09 AC 38 ms
51,968 KB
testcase_10 AC 102 ms
92,160 KB
testcase_11 AC 70 ms
74,752 KB
testcase_12 AC 63 ms
68,736 KB
testcase_13 AC 105 ms
95,104 KB
testcase_14 AC 64 ms
66,688 KB
testcase_15 AC 69 ms
72,704 KB
testcase_16 AC 49 ms
60,416 KB
testcase_17 AC 63 ms
68,736 KB
testcase_18 AC 69 ms
70,528 KB
testcase_19 AC 52 ms
62,464 KB
testcase_20 AC 56 ms
65,792 KB
testcase_21 AC 113 ms
98,560 KB
testcase_22 AC 83 ms
81,408 KB
testcase_23 AC 102 ms
93,184 KB
testcase_24 AC 52 ms
63,232 KB
testcase_25 AC 73 ms
77,312 KB
testcase_26 AC 72 ms
74,752 KB
testcase_27 AC 74 ms
76,544 KB
testcase_28 AC 70 ms
73,316 KB
testcase_29 AC 115 ms
101,248 KB
testcase_30 AC 40 ms
51,968 KB
testcase_31 AC 47 ms
59,480 KB
testcase_32 AC 47 ms
59,392 KB
testcase_33 AC 46 ms
59,136 KB
testcase_34 AC 47 ms
59,520 KB
testcase_35 AC 77 ms
74,496 KB
testcase_36 AC 56 ms
62,208 KB
testcase_37 AC 64 ms
68,864 KB
testcase_38 AC 68 ms
72,064 KB
testcase_39 AC 66 ms
70,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
l = []
C = 0
for _ in range(N):
    v,w = map(int,input().split())
    l.append((v,w))
    C += w
dp = [0] * (C + 1)
V = int(input())
for v,w in l:
    nx = dp.copy()
    for j in range(C+1):
        if j + w <= C:
            if nx[j + w] < dp[j] + v:
                nx[j + w] = dp[j] + v
    dp = nx
m = C + 5
M = 0
for i in range(1,C+1):
    if dp[i] == V:
        if i < m:
            m = i
        if i > M:
            M = i
if M == C:
    M = "inf"
print(m)
print(M)
0