Problem B
Eko
Lumberjack Mirko needs to chop down
Mirko’s machine works as follows: Mirko sets a height
parameter
Mirko is ecologically minded, so he does not want to cut off
more wood than necessary. That is why he wants to set his
sawblade as high as possible. Help Mirko find the maximum
integer height of the sawblade that still allows him to cut off
at least
Input
The first line of input contains two space-separated
positive integers,
The second line of input contains
Output
The first and only line of output must contain the required height setting.
Sample Input 1 | Sample Output 1 |
---|---|
4 7 20 15 10 17 |
15 |
Sample Input 2 | Sample Output 2 |
---|---|
5 20 4 42 40 26 46 |
36 |