fork download
  1. /* package whatever; // don't place package name! */
  2. //Largest subarray with sum <=k
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6.  
  7. /* Name of the class has to be "Main" only if the class is public. */
  8. class Ideone
  9. {
  10. public static void main (String[] args) throws java.lang.Exception
  11. {
  12. // your code goes here
  13.  
  14. int k = 5;
  15. int p =0;
  16. int arr[] = {1,2,1,3,4,5};
  17. int n = arr.length;
  18. int len=0;
  19. int sum = 0;
  20. for(int i = 0;i<n;i++){
  21. for(int j = i;j<n;j++){
  22. sum = sum + arr[j];
  23. if(sum <= k){
  24. len = j-i+1;
  25. p = Math.max(p,len);
  26.  
  27. }
  28. }
  29. }
  30. System.out.println(p);
  31. }
  32. }
Success #stdin #stdout 0.1s 54480KB
stdin
Standard input is empty
stdout
3