Submission #1104424

#TimeUsernameProblemLanguageResultExecution timeMemory
1104424qrnAkcija (COCI15_akcija)C++14
80 / 80
14 ms1276 KiB
#include <bits/stdc++.h> using namespace std; template<class ISqr, class T> ISqr& operator>>(ISqr& is, vector<T>& v) { for (auto& x : v) is >> x; return is; } #define SPEED \ ios_base::sync_with_stdio(0); \ cin.tie(NULL); \ cout.tie(NULL); template <typename T> void show(vector<T> &v) { for (T i : v) { cout << i << ' '; } cout << endl; } #define pb push_back #define ins insert #define fi first #define se second #define endl "\n" #define ALL(x) x.begin(), x.end() #define sz(x) x.size() #define int long long #define _ << " " << #define no cout << "No" << endl; #define yes cout << "Yes" << endl; #define impos cout << -1 << endl; #define vi vector<int> #define pii pair<int,int> #define vpii vector<pii> void solve() { // 4 5 5 5 5 6 6 // 1 2 3 4 5 6 7 8 9 10 int n; cin >> n; vi a(n); cin >> a; int sum = 0; for(int i : a) sum += i; sort(ALL(a)); reverse(ALL(a)); int orz = 0; for(int i = 0; i < n; i++) { orz += ((i % 3 == 2) ? a[i] : 0); } cout << sum - orz << endl; } signed main(){ SPEED; int t = 1; // cin >> t; for(int cs = 1; cs <= t; cs++) { solve(); } }
#Verdict Execution timeMemoryGrader output
Fetching results...