传统题 1000ms 256MiB

1%

该比赛已结束,您无法在比赛模式下递交该题目。您可以点击“在题库中打开”以普通模式查看和递交本题。

Problem Statement

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

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

Constraints

  • 101X1018 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 XX yen or above for the first time.

Sample Input 1

103

Sample Output 1

3
  • The balance after one year is 101101 yen.
  • The balance after two years is 102102 yen.
  • The balance after three years is 103103 yen.

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

Sample Input 2

1000000000000000000

Sample Output 2

3760

Sample Input 3

1333333333

Sample Output 3

1706

2024暑期集训第三周小测

未参加
状态
已结束
规则
ACM/ICPC
题目
6
开始于
2024-7-17 19:00
结束于
2024-7-17 21:00
持续时间
2 小时
主持人
参赛人数
34