Submission #1195293


Source Code Expand

#include<iostream>
#include<cstdio>
#include<algorithm>
using namespace std;

int main(){
  int n;
  long long a[11111];
  long long ans;

  scanf(" %d ",&n);

  for(int i=0;i<n*3;i++){
    scanf(" %lld",&a[i]);
  }

  sort(a,a+n*3);

  /*                                                                            
  for(int i=0;i<n*3;i++){                                                       
    printf("%3lld ",a[i]);                                                      
  }                                                                             
  printf("\n");                                                                 
  */

  ans=0;
  for(int i=0;i<n;i++){
    ans+=a[i+n];
  }

  printf("%lld\n",ans);

  return 0;

}

Submission Info

Submission Time
Task A - AtCoder Group Contest
User ei1640
Language C++14 (GCC 5.4.1)
Score 0
Code Size 776 Byte
Status RE
Exec Time 98 ms
Memory 384 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:11:19: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
   scanf(" %d ",&n);
                   ^
./Main.cpp:14:25: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
     scanf(" %lld",&a[i]);
                         ^

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 300
Status
AC × 2
AC × 2
WA × 4
RE × 6
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 RE 98 ms 384 KB
06.txt RE 97 ms 256 KB
07.txt RE 97 ms 384 KB
08.txt RE 97 ms 384 KB
09.txt RE 96 ms 256 KB
10.txt RE 97 ms 384 KB