시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 64 MB162918555.921%

문제

Young Mislav loves spending time in nature and, most of all, he loves spending time in forests. The fresh air and lovely sounds make the forest his favourite location. Mislav has decided to spend this afternoon in a forest and, because he’s so practical, he’s also decided to stuff himself with food. His belly can contain C amount of food.

He will have the opportunity to eat various fruits of nature (mushrooms, chestnuts, berries, and so on) while walking through the forest. All fruits are mutually different given their type and he’d like to eat as much different fruits as possible, but with the condition that he doesn’t overeat. In other words, the total weight of the fruits he’s eaten must not be larger than C. Also, when Mislav decides to start eating, he tries to eat every next fruit if it’s possible to eat it and not overeat. In the case when he doesn’t have the capacity to eat it, he just moves on.

An array of weights of N fruits represents the weight and order of fruits that Mislav came across in the forest. Determine the maximum amount of different fruits that Mislav can eat.

입력

The first line of input contains two integers N and C (1 ≤ N ≤ 1 000, 1 ≤ C ≤ 1 000 000) from the task.

The second line contains N integers wi (1 ≤ wi ≤ 1000) that represent the fruits’ weight.

출력

The first and only line of output must contain the maximum possible amount of different fruits that Mislav can eat.

예제 입력 1

5 5
3 1 2 1 1

예제 출력 1

4

예제 입력 2

7 5
1 5 4 3 2 1 1

예제 출력 2

3

예제 입력 3

5 10
3 2 5 4 3

예제 출력 3

3

힌트

Clarification of the first example: If Mislav decides to start eating from fruit (3), then he will have eaten 3 different fruits (3, 1, 1). If he starts eating from fruit (1), he will have eaten 4 fruits (1, 2, 1, 1).