Submission #1368916


Source Code Expand

#include <bits/stdc++.h>

using namespace std;

#define forn(i, x, n) for (int i = int(x); i <= int(n); ++i)
#define for1(i, n, x) for (int i = int(n); i >= int(x); --i)
#define F first
#define S second
#define pb push_back

typedef long long ll;
typedef pair <int, int> pii;
typedef long double ld;
typedef vector <ll> vi;

const int N = 2e6 + 1;
const ll INF = 1e18 + 9;
const int B = 1e9 + 7;

int n;
int a[N];

int main() {
    #ifdef black
    freopen("in", "r", stdin);
    #endif // black
    ios_base :: sync_with_stdio(0);
    cin.tie(0);

    cin >> n;
    forn(i, 1, n * 3)
        cin >> a[i];
    sort(a + 1, a + 1 + 3 * n);
    int p = n * 3 - 1;
    ll ans = 0;
    forn(i, 1, n) {
        ans += a[p];
        p -= 2;
    }
    cout << ans << "\n";

    return 0;
}

Submission Info

Submission Time
Task A - AtCoder Group Contest
User sancho
Language C++14 (GCC 5.4.1)
Score 300
Code Size 825 Byte
Status AC
Exec Time 46 ms
Memory 1408 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 300 / 300
Status
AC × 2
AC × 12
Set Name Test Cases
Sample 00_example_01.txt, 00_example_02.txt
All 00_example_01.txt, 00_example_02.txt, 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt
Case Name Status Exec Time Memory
00_example_01.txt AC 1 ms 256 KB
00_example_02.txt AC 1 ms 256 KB
01.txt AC 1 ms 256 KB
02.txt AC 1 ms 256 KB
03.txt AC 1 ms 256 KB
04.txt AC 1 ms 256 KB
05.txt AC 4 ms 384 KB
06.txt AC 36 ms 1408 KB
07.txt AC 22 ms 1408 KB
08.txt AC 46 ms 1408 KB
09.txt AC 46 ms 1408 KB
10.txt AC 45 ms 1408 KB