#ABC130B. Bounding
Bounding
题目描述
A ball will bounce along a number line, making bounces. It will make the first bounce at coordinate , and the -th bounce at coordinate .
How many times will the ball make a bounce where the coordinate is at most ?
一个小球沿着一条数线弹跳,共进行了 次弹跳。它将在坐标 处做第一次反弹,在坐标 处做第 次反弹 。
小球最多会在坐标 处反弹多少次?
输入格式
输入内容按以下格式标准输入:
输出格式
打印小球在坐标最多为 的地方反弹的次数。
样例 #1
样例输入 #1
3 6
3 4 5
样例输出 #1
2
样例 #2
样例输入 #2
4 9
3 3 3 3
样例输出 #2
4
说明
数据规模与约定
- 所有输入值均为整数。
样例 解释
小球将在坐标 、 、 和 处反弹,其中两个坐标小于或等于 。
样例 解释
小球将在坐标 、 、 、 和 处反弹,其中四个坐标小于或等于 。