Problem4132--USACO 2016 US Open Contest, Bronze Problem 1. Diamond Collector

4132: USACO 2016 US Open Contest, Bronze Problem 1. Diamond Collector

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 0  Solved: 0
[Submit] [Status] [Web Board] [Creator:]

Description

Bessie the cow, always a fan of shiny objects, has taken up a hobby of mining diamonds in her spare time! She has collected NN diamonds (N≤1000N≤1000) of varying sizes, and she wants to arrange some of them in a display case in the barn.

Since Bessie wants the diamonds in the case to be relatively similar in size, she decides that she will not include two diamonds in the case if their sizes differ by more than KK (two diamonds can be displayed together in the case if their sizes differ by exactly KK). Given KK, please help Bessie determine the maximum number of diamonds she can display in the case.


Input

INPUT FORMAT (file diamond.in):

The first line of the input file contains NN and KK (0≤K≤10,0000≤K≤10,000). The next NN lines each contain an integer giving the size of one of the diamonds. All sizes will be positive and will not exceed 10,00010,000.


Output

OUTPUT FORMAT (file diamond.out):

Output a single positive integer, telling the maximum number of diamonds that Bessie can showcase.


Sample Input Copy

SAMPLE INPUT:
5 3
1
6
4
3
1

Sample Output Copy

SAMPLE OUTPUT:
4

Source/Category