CF1042A.Benches

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

There are nn benches in the Berland Central park. It is known that aia_i people are currently sitting on the ii -th bench. Another mm people are coming to the park and each of them is going to have a seat on some bench out of nn available.

Let kk be the maximum number of people sitting on one bench after additional mm people came to the park. Calculate the minimum possible kk and the maximum possible kk .

Nobody leaves the taken seat during the whole process.

输入格式

The first line contains a single integer nn (1n100)(1 \le n \le 100) — the number of benches in the park.

The second line contains a single integer mm (1m10000)(1 \le m \le 10\,000) — the number of people additionally coming to the park.

Each of the next nn lines contains a single integer aia_i (1ai100)(1 \le a_i \le 100) — the initial number of people on the ii -th bench.

输出格式

Print the minimum possible kk and the maximum possible kk , where kk is the maximum number of people sitting on one bench after additional mm people came to the park.

输入输出样例

  • 输入#1

    4
    6
    1
    1
    1
    1
    

    输出#1

    3 7
    
  • 输入#2

    1
    10
    5
    

    输出#2

    15 15
    
  • 输入#3

    3
    6
    1
    6
    5
    

    输出#3

    6 12
    
  • 输入#4

    3
    7
    1
    6
    5
    

    输出#4

    7 13
    

说明/提示

In the first example, each of four benches is occupied by a single person. The minimum kk is 33 . For example, it is possible to achieve if two newcomers occupy the first bench, one occupies the second bench, one occupies the third bench, and two remaining — the fourth bench. The maximum kk is 77 . That requires all six new people to occupy the same bench.

The second example has its minimum kk equal to 1515 and maximum kk equal to 1515 , as there is just a single bench in the park and all 1010 people will occupy it.

首页