Submission #2558559


Source Code Expand

#include <bits/stdc++.h>

using namespace std;

int main(void) {
  int n;
  cin >> n;
  vector <int> a(n);
  for(int i = 0; i < n; i++) {
    cin >> a[i];
  }

  vector <int> color(9);
  for(int i = 0; i < 9; i++) {
    color[i] = 0;
  }
  for(int i = 0; i < n; i++) {
    if(a[i] / 400 < 3200) {
      color[a[i] / 400]++;
    }
    else {
      color[8]++;
    }
  }

  int base = 0;
  for(int i = 0; i < 8; i++) {
    if(color[i] > 0) {
      base++;
    }
  }

  int mn, mx;
  if(base == 0) {
    mn = 1;
  }
  else {
    mn = base;
  }

  mx = base + color[8];

  cout << mn << " " << mx << endl;
}

Submission Info

Submission Time
Task C - Colorful Leaderboard
User forestelements
Language C++14 (GCC 5.4.1)
Score 0
Code Size 646 Byte
Status RE
Exec Time 271 ms
Memory 256 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 300
Status
AC × 3
AC × 5
WA × 1
RE × 2
Set Name Test Cases
Sample s1.txt, s2.txt, s3.txt
All in1.txt, in2.txt, in3.txt, in4.txt, in5.txt, s1.txt, s2.txt, s3.txt
Case Name Status Exec Time Memory
in1.txt WA 1 ms 256 KB
in2.txt AC 1 ms 256 KB
in3.txt RE 271 ms 256 KB
in4.txt RE 96 ms 256 KB
in5.txt AC 1 ms 256 KB
s1.txt AC 1 ms 256 KB
s2.txt AC 1 ms 256 KB
s3.txt AC 1 ms 256 KB