# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1101717 | ardadut | Akcija (COCI15_akcija) | C++17 | 14 ms | 1616 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ll long long
#define pb push_back
#define endl "\n";
#define vec vector<ll>
#define vecvec vector<vector<ll>>
using namespace std;
/*#define FileName "connect"
string Ghhhh = ".in";
string Ghhhhh = ".out";
ifstream Girdi(FileName + Ghhhh);
ofstream Cikti(FileName + Ghhhhh);
#define cin Girdi
#define cout Cikti*/
bool comp(ll a, ll b){
return a > b;
}
inline void solve(){
ll n;
cin >> n;
vector<ll> arr(n);
ll sum = 0;
for(ll i = 0 ; i < n ; i++){
cin >> arr[i];
sum += arr[i];
}
sort(arr.begin(),arr.end(),comp);
for(ll i = 0 ; i < n ; i++){
if(i % 3 == 2) sum -= arr[i];
}
cout << sum << endl;
}
signed main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
ll t = 1;
//cin >> t;
while(t--){
solve();
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |