#ABC146C. Buy an Integer
Buy an Integer
题目描述
Takahashi has come to an integer shop to buy an integer.
The shop sells the integers from through . The integer is sold for yen (the currency of Japan), where is the number of digits in the decimal notation of .
Find the largest integer that Takahashi can buy when he has yen. If no integer can be bought, print .
高桥来到一家整数商店购买整数。
商店出售从 到 的整数。整数 的售价为 日元(日本货币),其中 是 的十进制符号的位数。
求高桥有 日元时能买的最大整数。如果买不到整数,则打印 。
输入格式
输入内容按以下格式标准输入:
输出格式
打印高桥所能购买的最大整数。如果买不到整数,则打印 。
样例 #1
样例输入 #1
10 7 100
样例输出 #1
9
样例 #2
样例输入 #2
2 1 100000000000
样例输出 #2
1000000000
样例 #3
样例输入 #3
1000000000 1000000000 100
样例输出 #3
0
样例 #4
样例输入 #4
1234 56789 314159265
样例输出 #4
254309
说明
数据规模与约定
- 所有输入值均为整数。
样例 解释
整数 以 日元出售,这是可以买到的最大整数。其他一些整数的售价如下:
- 日元
- 日元
- 日元
样例 解释
他可以购买卖出的最大整数。注意,输入可能不适合 /位整数类型。