Submission #2235771


Source Code Expand

#include <bits/stdc++.h>
using namespace std;

int main(void) {
    int n;
    long long ans = 0;
    vector<int> a;
    cin >> n;
    a.resize(n * 3);
    for (int i = 0; i < n * 3; i++)
        cin >> a[i];
    sort(a.begin(), a.end());
    for (int i = 0; i < n; i++)
        ans += a[n + i * 2];
    cout << ans << endl;
}

Submission Info

Submission Time
Task A - Cookie Exchanges
User zohe
Language C++14 (GCC 5.4.1)
Score 0
Code Size 343 Byte
Status RE
Exec Time 2123 ms
Memory 1716608 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 300
Status
WA × 3
WA × 7
TLE × 1
RE × 9
Set Name Test Cases
Sample sample1.txt, sample2.txt, sample3.txt
All sample1.txt, sample2.txt, sample3.txt, in1.txt, in10.txt, in11.txt, in2.txt, in3.txt, in4.txt, in5.txt, in6.txt, in7.txt, in8.txt, in9.txt, sample1.txt, sample2.txt, sample3.txt
Case Name Status Exec Time Memory
in1.txt RE 110 ms 640 KB
in10.txt WA 1 ms 256 KB
in11.txt RE 98 ms 256 KB
in2.txt RE 98 ms 256 KB
in3.txt TLE 2123 ms 1716608 KB
in4.txt RE 115 ms 256 KB
in5.txt RE 100 ms 256 KB
in6.txt RE 99 ms 256 KB
in7.txt RE 100 ms 256 KB
in8.txt RE 97 ms 256 KB
in9.txt RE 97 ms 256 KB
sample1.txt WA 1 ms 256 KB
sample2.txt WA 1 ms 256 KB
sample3.txt WA 1 ms 256 KB