Problem hidden
This problem was hidden by Editorial Board member probably because it has incorrect language version or invalid test data, or description of the problem is not clear.
Problem hidden on 2021-03-10 06:37:58 by Jing Wang

C2013A1 - Planting Trees

Farmer Jon has recently bought n tree seedlings that he wants to plant in his yard. It takes 1 day for Jon to plant a seedling 1, and for each tree Jon knows exactly in how many days after planting it grows to full maturity. Jon would also like to throw a party for his farmer friends, but in order to impress them he would like to organize the party only after all the trees have grown. More precisely, the party can be organized at earliest on the next day after the last tree has grown up. Help Jon to find out when is the earliest day when the party can take place. Jon can choose the order of planting the trees as he likes, so he wants to plant the trees in such a way that the party will be as soon as possible.

Input

The input consists of two lines. The first line contains a single integer N (1 <= N <= 100 000) denoting the number of seedlings. Then a line with N integers t_i follows (1 <= t_i <= 1 000 000), where t_i denotes the number of days it takes for the ith tree to grow.

Output

Your program should output exactly one line containing one integer, denoting the earliest day when the party can be organized. The days are numbered 1, 2, 3, ... beginning from the current moment.

Sample Input 1

4
2 3 4 3

Sample Output 1

7

Sample Input 2

6
39 38 9 35 39 20

Sample Output 2

42

Added by:ab
Date:2013-10-10
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:C C++ 4.3.2 CPP JAVA
Resource:NCPC2013
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.