結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
59,776 KB
testcase_01 AC 49 ms
60,032 KB
testcase_02 AC 50 ms
59,648 KB
testcase_03 AC 52 ms
60,672 KB
testcase_04 AC 49 ms
58,624 KB
testcase_05 AC 74 ms
76,288 KB
testcase_06 AC 101 ms
76,032 KB
testcase_07 AC 89 ms
76,160 KB
testcase_08 AC 67 ms
71,040 KB
testcase_09 AC 50 ms
58,752 KB
testcase_10 AC 100 ms
75,776 KB
testcase_11 AC 84 ms
76,032 KB
testcase_12 AC 76 ms
75,648 KB
testcase_13 AC 104 ms
76,032 KB
testcase_14 AC 66 ms
69,376 KB
testcase_15 AC 79 ms
75,904 KB
testcase_16 AC 50 ms
60,032 KB
testcase_17 AC 75 ms
76,416 KB
testcase_18 AC 78 ms
76,032 KB
testcase_19 AC 53 ms
61,184 KB
testcase_20 AC 65 ms
70,016 KB
testcase_21 AC 108 ms
75,776 KB
testcase_22 AC 86 ms
75,776 KB
testcase_23 AC 104 ms
76,032 KB
testcase_24 AC 58 ms
64,128 KB
testcase_25 AC 84 ms
76,032 KB
testcase_26 AC 84 ms
76,032 KB
testcase_27 AC 82 ms
75,776 KB
testcase_28 AC 79 ms
76,416 KB
testcase_29 AC 110 ms
76,032 KB
testcase_30 AC 51 ms
60,672 KB
testcase_31 AC 71 ms
75,648 KB
testcase_32 AC 75 ms
76,160 KB
testcase_33 AC 72 ms
76,160 KB
testcase_34 AC 76 ms
75,776 KB
testcase_35 AC 81 ms
75,776 KB
testcase_36 AC 51 ms
59,264 KB
testcase_37 AC 78 ms
76,032 KB
testcase_38 AC 79 ms
76,160 KB
testcase_39 AC 78 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

for i in range(1,100010):
    if DP[i]<DP[i-1]:
        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