# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
927930 | Isam | Akcija (COCI15_akcija) | C++17 | 12 ms | 1620 KiB |
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;
constexpr int sz = 2e5 + 5;
int n;
long long ans(0);
int main(){
ios_base::sync_with_stdio(0), cin.tie(0), cout.tie(0);
cin >> n;
vector<int> A(n);
for(auto &j : A) cin >> j, ans += j;
sort(A.begin(), A.end());
for(register int i = n - 3; i >= 0; i -= 3){
ans -= A[i];
}
cout << ans << '\n';
return 0;
}
/*
*/
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |