Advertisement
SergeyPGUTI

9.3(мега)

Mar 6th, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.28 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5.  
  6. int main() {
  7.  
  8.     int k,n,sum=0,buff,result;
  9.     cin>>k;
  10.     cin>>n;
  11.     for(int i=0;i<n;i++)
  12.     {
  13.         cin>>buff;
  14.         sum+=buff;
  15.         sum-=k;
  16.         if (sum<0) sum=0;
  17.     }
  18.     cout<<sum;
  19.  
  20.     return 0;
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement