1%
该比赛已结束,您无法在比赛模式下递交该题目。您可以点击“在题库中打开”以普通模式查看和递交本题。
Problem Statement
Takahashi has a deposit of yen (the currency of Japan) in AtCoder Bank.
The bank pays an annual interest rate of % compounded annually. (A fraction of less than one yen is discarded.)
Assuming that nothing other than the interest affects Takahashi's balance, in how many years does the balance reach yen or above for the first time?
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
X
Output
Print the number of years it takes for Takahashi's balance to reach yen or above for the first time.
Sample Input 1
103
Sample Output 1
3
- The balance after one year is yen.
- The balance after two years is yen.
- The balance after three years is yen.
Thus, it takes three years for the balance to reach yen or above.
Sample Input 2
1000000000000000000
Sample Output 2
3760
Sample Input 3
1333333333
Sample Output 3
1706