fork(1) download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. long long n,x;
  7. cin>>n>>x;
  8. long long a[n],temp;
  9. long long mn=INT_MAX;
  10. for(temp=0;temp<n;temp++)
  11. {
  12. cin>>a[temp];
  13. mn=min(mn,a[temp]);
  14. }
  15. long long sum=0;
  16. for(temp=0;temp<n;temp++)
  17. {
  18. if(a[temp]<mn + x)
  19. {
  20. sum+=a[temp];
  21. }
  22. else sum+=mn+x;
  23. }
  24. cout<<sum<<"\n";
  25. }
Success #stdin #stdout 0s 3472KB
stdin
4 10
1 2 3 4
stdout
10