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