This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
signed main(){
cin.tie(0)->sync_with_stdio(0);
int n; cin >> n;
vector<int> a(n);
for (int i=0; i<n; i++) cin >> a[i];
cout << accumulate(a.begin(), a.end(), 0LL) + (*min_element(a.begin(), a.end()) * (n-2LL)) << "\n";
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |