結果

問題 No.527 ナップサック容量問題
ユーザー pluto77pluto77
提出日時 2017-06-16 09:03:19
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 313 ms / 2,000 ms
コード長 483 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 77,440 KB
実行使用メモリ 157,812 KB
最終ジャッジ日時 2024-10-01 06:36:24
合計ジャッジ時間 8,880 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
80,380 KB
testcase_01 AC 94 ms
81,536 KB
testcase_02 AC 90 ms
79,792 KB
testcase_03 AC 93 ms
81,928 KB
testcase_04 AC 83 ms
78,976 KB
testcase_05 AC 183 ms
110,324 KB
testcase_06 AC 290 ms
145,696 KB
testcase_07 AC 245 ms
132,352 KB
testcase_08 AC 166 ms
105,620 KB
testcase_09 AC 80 ms
79,128 KB
testcase_10 AC 286 ms
147,116 KB
testcase_11 AC 223 ms
126,092 KB
testcase_12 AC 187 ms
112,768 KB
testcase_13 AC 288 ms
148,652 KB
testcase_14 AC 157 ms
103,040 KB
testcase_15 AC 199 ms
118,460 KB
testcase_16 AC 96 ms
81,564 KB
testcase_17 AC 182 ms
110,984 KB
testcase_18 AC 198 ms
115,836 KB
testcase_19 AC 99 ms
82,568 KB
testcase_20 AC 163 ms
104,712 KB
testcase_21 AC 313 ms
157,812 KB
testcase_22 AC 238 ms
130,588 KB
testcase_23 AC 311 ms
155,648 KB
testcase_24 AC 133 ms
93,568 KB
testcase_25 AC 230 ms
129,072 KB
testcase_26 AC 218 ms
123,560 KB
testcase_27 AC 219 ms
124,148 KB
testcase_28 AC 204 ms
118,564 KB
testcase_29 AC 308 ms
156,928 KB
testcase_30 AC 105 ms
85,512 KB
testcase_31 AC 185 ms
111,904 KB
testcase_32 AC 203 ms
119,552 KB
testcase_33 AC 189 ms
113,704 KB
testcase_34 AC 209 ms
121,728 KB
testcase_35 AC 213 ms
121,504 KB
testcase_36 AC 91 ms
80,512 KB
testcase_37 AC 180 ms
110,464 KB
testcase_38 AC 204 ms
118,932 KB
testcase_39 AC 196 ms
116,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki_527

n=int(raw_input())
v=[]
w=[]
for i in xrange(n):
 v1,w1=map(int,raw_input().split())
 v.append(v1)
 w.append(w1)
V=int(raw_input())
dp=[[0 for i in xrange(101010)] for j in xrange(n+1)]
for i in xrange(n):
 for j in xrange(100002):
  dp[i+1][j]=max(dp[i+1][j],dp[i][j])
  dp[i+1][j+w[i]]=max(dp[i+1][j+w[i]],dp[i][j]+v[i])
mn=float('inf')
mx=-1
for i in xrange(1,100002):
 if dp[n][i]==V:
  mn=min(mn,i)
  mx=max(mx,i)
print mn
if mx==100001:
 print 'inf'
else:
 print mx
0