#include <bits/stdc++.h>
using namespace std;
int main()
{
int n;
cin>>n;
long long sum = 0;
vector<long long>d(n + 1);
for (int i = 1;i<=n;i++)cin>>d[i];
sort(d.begin() + 1,d.end());
for (int i = 1;i<=n;i++)
sum += d[i];
sum += d[1];
cout<<sum;
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |