# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1111173 | 2024-11-11T15:43:28 Z | huantran | Autići (COCI22_autici) | C++17 | 0 ms | 0 KB |
#include <bits/stdc++.h> using namespace std; using ll = long long int; const int maxn = 2e5 + 5; const int oo = 1e9 + 7; const ll inf = 1e18; int main() { ios_base::sync_with_stdio(0); cin.tie(0), cout.tie(0); int n; cin >> n; vector<int> a(n); long long sum = 0; for (int i = 0; i < n; i++) cin >> a[i], sum += a[i]; sort(a.begin(), a.end()); cout << sum + 1LL * (n - 2) * a[0] }