fork download
  1. #include <iostream>
  2. using namespace std;
  3. #include <bits/stdc++.h>
  4.  
  5. int main() {
  6. // your code goes here
  7.  
  8. vector<int>arr={1,2,3,4,5,6};
  9. int k=10;
  10. int i=0,j=0;
  11. int n=arr.size();
  12. int sum=0;
  13. int max_length=0;
  14. int current_length;
  15. while(i<n && j<n)
  16. {
  17. sum+=arr[j];
  18. while(sum>k)
  19. {
  20. sum=sum-arr[i];
  21. i++;
  22. }
  23. current_length=(j-i+1);
  24. max_length=max(current_length,max_length);
  25. j++;
  26. }
  27. cout<<max_length;
  28. return 0;
  29. }
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
4