101651: [AtCoder]ABC165 B - 1%

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $200$ points

Problem Statement

Takahashi has a deposit of $100$ yen (the currency of Japan) in AtCoder Bank.

The bank pays an annual interest rate of $1$ % 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 $X$ yen or above for the first time?

Constraints

  • $ 101 \le X \le 10^{18} $
  • 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 $X$ yen or above for the first time.


Sample Input 1

103

Sample Output 1

3
  • The balance after one year is $101$ yen.
  • The balance after two years is $102$ yen.
  • The balance after three years is $103$ yen.

Thus, it takes three years for the balance to reach $103$ yen or above.


Sample Input 2

1000000000000000000

Sample Output 2

3760

Sample Input 3

1333333333

Sample Output 3

1706

Input

题意翻译

输入正整数$n$,找一个自然数$k$,使$100*1.01^k \geq n$

加入题单

上一题 下一题 算法标签: