Submission #1195008


Source Code Expand

#include <stdio.h>
#include <iostream>
#include <algorithm>
#include <functional>
#include <cstdlib>
#include <sstream>
#include <string>
#include <set>
#include <map>
#include <stack>
#include <queue>
#include <deque>
#include <complex>
#include <vector>
#include <cstdio>
#include <cmath>
#include <time.h>
#define all(c) ((c).begin(),(c).end())
#define rall(c) (c).rbegin(),(c).rend()
#define sort(v,n) sort(v,v+n)
#define vsort(v) sort(v.begin(),v.end())
#define vvsort(v) sort(v.begin(),v.end(),greater<int>())
#define ll long long
#define pb(a) push_back(a)
#define fi first
#define se second
#define inf 999999999
using namespace std;
const ll MOD = 1e9 + 7;
const double PI = acos(-1.0);
//---------------------------------------------------------------------------------------------//
int n;
ll a[400000];
int main() {
	cin >> n;
	for (int i = 0; i < 3*n; i++)cin >> a[i];
	sort(a, 3 * n);
	ll ans = 0;
	for (int i = n;i<=2*n-1; i++) {
		ans += a[i];
	}
	cout << ans << endl;
}

Submission Info

Submission Time
Task A - AtCoder Group Contest
User aim_cpo
Language C++14 (GCC 5.4.1)
Score 0
Code Size 1028 Byte
Status WA
Exec Time 131 ms
Memory 2560 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 300
Status
AC × 2
AC × 4
WA × 8
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 WA 1 ms 256 KB
02.txt WA 1 ms 256 KB
03.txt WA 1 ms 256 KB
04.txt WA 1 ms 256 KB
05.txt WA 7 ms 384 KB
06.txt AC 131 ms 2560 KB
07.txt AC 51 ms 2560 KB
08.txt WA 102 ms 2560 KB
09.txt WA 102 ms 2560 KB
10.txt WA 101 ms 2560 KB