Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include<algorithm>
- using namespace std;
- int main()
- {
- int n;
- cin>>n;
- int a[n];
- for(int i=0;i<n;i++)
- {
- cin>>a[i];
- }
- sort(a,a+n);
- long long zbir=0;
- for(int i=0;i<n;i++)
- {
- zbir+=a[i];
- }
- zbir-=a[n-1];
- if(zbir<a[n-1])
- {
- cout<<2*a[n-1];
- }else
- {
- cout<<zbir+a[n-1];
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement