#include <bits/stdc++.h>
using namespace std;
using ll = long long;
int main() {
int n;
cin >> n;
vector <int> nums(n);
for (int i = 0; i < n; i++)
cin >> nums[i];
sort(nums.begin(), nums.end());
ll ans = 0;
for (int i = n/3; i < n; i++)
ans += nums[i];
cout << ans << '\n';
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
344 KB |
Output isn't correct |
2 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
3 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
4 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
5 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
6 |
Incorrect |
16 ms |
1216 KB |
Output isn't correct |
7 |
Correct |
13 ms |
1116 KB |
Output is correct |
8 |
Correct |
14 ms |
1076 KB |
Output is correct |
9 |
Incorrect |
22 ms |
1372 KB |
Output isn't correct |
10 |
Incorrect |
21 ms |
1372 KB |
Output isn't correct |