시간 제한메모리 제한제출정답맞힌 사람정답 비율
1.5 초 512 MB24615713864.789%

문제

After the festive opening of your new store, the Boutique store for Alternative Paramedicine and Cwakhsahlvereigh, to your disappointment you find out that you are not making as many sales as you had hoped. To remedy this, you decide to run a special offer: you will mark some subset of the n items for sale in your store as participating in the offer, and if people buy exactly two of these items, and the cost of these items is strictly more than X euros, you will give them a free complimentary unicorn horn!

Since you recently found out all your unicorn horns are really narwahl tusks, you decide to rig the offer by picking the participating items in such a way that no one can earn a horn anyway.

To make sure no one becomes suspicious, you want to mark as many items as possible as participating in the offer.

입력

  • On the first line two integers, 1 ≤ n ≤ 105, the number of items for sale in your store, and 1 ≤ X ≤ 109, the minimum cost specified in the statement.
  • On the second line n positive integers, each at most 109. These are the prices of the items in the store.

출력

Print the maximum number of items you can mark as part of your special offer, without anyone actually being able to receive a horn.

예제 입력 1

5 6
1 2 3 4 5

예제 출력 1

3

예제 입력 2

5 10
4 8 1 9 7

예제 출력 2

2

예제 입력 3

4 10
1 3 1 7

예제 출력 3

4

예제 입력 4

1 5
6

예제 출력 4

1