fork download
  1. import java.util.*;
  2.  
  3. public class Main{
  4. public static void main(String[] args) {
  5. Scanner sc=new Scanner(System.in);
  6. int t=sc.nextInt();
  7. while(t-->0){
  8. int n=sc.nextInt();
  9. long x=sc.nextLong();
  10. Integer[] a=new Integer[n];
  11. for (int i=0;i<n;i++) {
  12. a[i]=sc.nextInt();
  13. }
  14. Arrays.sort(a,Collections.reverseOrder());
  15. int ans=0;
  16. int i=0;
  17. while(i<n){
  18. boolean found=false;
  19. for(int j=1;j<=n-i;j++){
  20. if((long)j*a[i+j-1]>=x){
  21. ans++;
  22. i+=j;
  23. found=true;
  24. break;
  25. }
  26. }
  27. if(!found){
  28. break;
  29. }
  30. }
  31. System.out.println(ans);
  32. }
  33. sc.close();
  34. }
  35. }
Success #stdin #stdout 0.15s 54524KB
stdin
5
6 4
4 5 3 3 2 6
4 10
4 2 1 3
5 3
5 3 2 3 2
3 6
9 1 7
6 10
6 1 3 6 3 2
stdout
4
0
4
2
1