In the first line a number T indicates the number of test cases. Then for each case the first line contain 2 numbers n, k (1<=n<=100000, 0<k<=10^9),indicate the company has n persons, k means maximum difference between abilities of staff in a group is less than k. second line contains integers:a[1],a[2],…,a[n](0<=a[i]<=10^9),indicate i-th staff’s ability.
For each test,output the number of groups.
2 4 2 3 1 2 4 10 5 0 3 4 5 2 1 6 7 8 9
5 28
First Sample, the satisfied groups include:[1,1]、[2,2]、[3,3]、[4,4] 、[2,3]