結果

問題 No.527 ナップサック容量問題
ユーザー H20H20
提出日時 2022-02-14 22:00:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 477 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-06-29 06:55:43
合計ジャッジ時間 4,938 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
64,512 KB
testcase_01 AC 55 ms
66,688 KB
testcase_02 AC 55 ms
63,232 KB
testcase_03 AC 56 ms
66,432 KB
testcase_04 AC 50 ms
61,056 KB
testcase_05 AC 89 ms
76,032 KB
testcase_06 AC 130 ms
75,392 KB
testcase_07 AC 108 ms
75,520 KB
testcase_08 AC 84 ms
75,776 KB
testcase_09 AC 50 ms
61,056 KB
testcase_10 AC 123 ms
75,392 KB
testcase_11 AC 101 ms
76,160 KB
testcase_12 AC 92 ms
75,904 KB
testcase_13 AC 129 ms
75,776 KB
testcase_14 AC 84 ms
75,648 KB
testcase_15 AC 98 ms
76,288 KB
testcase_16 AC 57 ms
66,304 KB
testcase_17 AC 89 ms
75,904 KB
testcase_18 AC 94 ms
75,904 KB
testcase_19 AC 60 ms
68,864 KB
testcase_20 AC 84 ms
75,776 KB
testcase_21 AC 134 ms
75,904 KB
testcase_22 AC 109 ms
75,904 KB
testcase_23 AC 130 ms
76,416 KB
testcase_24 AC 77 ms
75,776 KB
testcase_25 AC 104 ms
75,904 KB
testcase_26 AC 103 ms
75,648 KB
testcase_27 AC 101 ms
75,904 KB
testcase_28 AC 95 ms
76,032 KB
testcase_29 AC 137 ms
76,288 KB
testcase_30 AC 67 ms
74,368 KB
testcase_31 AC 90 ms
75,648 KB
testcase_32 AC 93 ms
75,904 KB
testcase_33 AC 89 ms
75,904 KB
testcase_34 AC 93 ms
75,392 KB
testcase_35 AC 100 ms
75,520 KB
testcase_36 AC 57 ms
64,896 KB
testcase_37 AC 94 ms
75,776 KB
testcase_38 AC 97 ms
76,032 KB
testcase_39 AC 94 ms
75,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
VW = [list(map(int, input().split())) for _ in range(N)]
V = int(input())
DP = [0]*(100010)
for v,w in VW:
    for i in reversed(range(100010)):
        if DP[i]>0:
            DP[i+w]=max(DP[i+w],DP[i]+v)
    DP[w]=max(DP[w],v)

for i in range(1,100010):
    DP[i]=max(DP[i],DP[i-1])

mi=0
ma=0
for i in range(100010):
    if DP[i]==V and mi==0:
        mi=i
    if DP[i]==V:
        ma=i


print(max(mi,1))
if ma==100009:
    print('inf')
else:
    print(ma)
0