artemgf

Китайский язык

May 7th, 2017
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.48 KB | None | 0 0
  1. #define _USE_MATH_DEFINES
  2. #include <iostream>
  3. #include <conio.h>
  4. #include <string>
  5. #include <set>
  6. #include <map>
  7. #include <algorithm>
  8. #include <string>
  9. #include <math.h>
  10. #include <vector>
  11. #include <cmath>
  12. #include <sstream>
  13.  
  14. using namespace std;
  15.  
  16. int main()
  17. {
  18.     long long prom, n, people, sum=0;
  19.  
  20.     cin >> people >> n;
  21.  
  22.     for (int i = 1; i <= n; i++)
  23.     {
  24.         cin >> prom;
  25.         sum += prom;
  26.     }
  27.  
  28.     cout << max(sum - people*(n - 1), (long long)0);
  29.  
  30.     _getch();
  31.     return 0;
  32. }
Advertisement
Add Comment
Please, Sign In to add comment