#ABC165D. Floor Function
Floor Function
题目描述
Given are integers , , and .
Find the maximum possible value of for a non-negative integer not greater than .
Here denotes the greatest integer not greater than the real number .
给出整数 、 和 。
求不大于 的非负整数 的最大可能值 。
这里的 表示不大于实数 的最大整数。
输入格式
输入内容按以下格式标准输入:
输出格式
以整数形式打印非负整数 不大于 的 的最大可能值。
样例 #1
样例输入 #1
5 7 4
样例输出 #1
2
样例 #2
样例输入 #2
11 10 9
样例输出 #2
9
说明
数据规模与约定
- 所有输入值均为整数。
样例 解释
当 , $floor(Ax/B)-Afloor(x/B) = floor(15/7) - 5floor(3/7) = 2$ 时。这是可能的最大值。