CF1165B.Polycarp Training

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Polycarp wants to train before another programming competition. During the first day of his training he should solve exactly 11 problem, during the second day — exactly 22 problems, during the third day — exactly 33 problems, and so on. During the kk -th day he should solve kk problems.

Polycarp has a list of nn contests, the ii -th contest consists of aia_i problems. During each day Polycarp has to choose exactly one of the contests he didn't solve yet and solve it. He solves exactly kk problems from this contest. Other problems are discarded from it. If there are no contests consisting of at least kk problems that Polycarp didn't solve yet during the kk -th day, then Polycarp stops his training.

How many days Polycarp can train if he chooses the contests optimally?

输入格式

The first line of the input contains one integer nn ( 1n21051 \le n \le 2 \cdot 10^5 ) — the number of contests.

The second line of the input contains nn integers a1,a2,,ana_1, a_2, \dots, a_n ( 1ai21051 \le a_i \le 2 \cdot 10^5 ) — the number of problems in the ii -th contest.

输出格式

Print one integer — the maximum number of days Polycarp can train if he chooses the contests optimally.

输入输出样例

  • 输入#1

    4
    3 1 4 1
    

    输出#1

    3
    
  • 输入#2

    3
    1 1 1
    

    输出#2

    1
    
  • 输入#3

    5
    1 1 1 2 2
    

    输出#3

    2
    
首页