Fox and Box Accumulation

Fox Ciel has n boxes in her room. They have the same size and weight, but they might have different strength. The i-th box can hold at most x i boxes on its top (we’ll call x i the strength of the box).

Since all the boxes have the same size, Ciel cannot put more than one box directly on the top of some box. For example, imagine Ciel has three boxes: the first has strength 2, the second has strength 1 and the third has strength 1. She cannot put the second and the third box simultaneously directly on the top of the first one. But she can put the second box directly on the top of the first one, and then the third box directly on the top of the second one. We will call such a construction of boxes a pile.

Fox Ciel wants to construct piles from all the boxes. Each pile will contain some boxes from top to bottom, and there cannot be more than x i boxes on the top of i-th box. What is the minimal number of piles she needs to construct?

Input

The first line contains an integer n (1 ≤ n ≤ 100). The next line contains n integers x 1, x 2, …, x n (0 ≤ x i ≤ 100).

Output

Output a single integer — the minimal possible number of piles.

Examples

input

3
0 0 10

output

2

input

5
0 1 2 3 4

output

1

input

4
0 0 0 0

output

4

input

9
0 1 0 2 0 1 1 2 10

output

3

Note

In example 1, one optimal way is to build 2 piles: the first pile contains boxes 1 and 3 (from top to bottom), the second pile contains only box 2.

In example 2, we can build only 1 pile that contains boxes 1, 2, 3, 4, 5 (from top to bottom).

Solution:

#include <vector>
#include <list>
#include <map>
#include <set>
#include <deque>
#include <stack>
#include <bitset>
#include <algorithm>
#include <functional>
#include <numeric>
#include <utility>
#include <sstream>
#include <iostream>
#include <iomanip>
#include <cstdio>
#include <cmath>
#include <cstdlib>
#include <ctime>
#include <memory.h>

using namespace std;

const int co = 1000;

int a[co + 10];

int main() {
int n;
scanf("%d", &n);
for (int i = 0; i < n; i++) scanf("%d", a + i);
  sort(a, a + n);
  int used = 0, ans = 0;
  while (used < n) {
    ans++;
    int h = 0;
    for (int i = 0; i < n; i++)
      if (a[i] >= h) {
a[i] = -1;
h++;
used++;
}
}
printf("%d\n", ans);
return 0;
}