1929. Savings Account

单点时限: 2.0 sec

内存限制: 256 MB

Suppose you open a savings account with a certain initial balance. You will not make any withdrawals or further deposits for a number of years. The bank will compound your balance (add the annual interest) once a year, on the anniversary of the opening of the account. Your goal is to achieve a certain target amount in your savings account. In how may years will the target amount be achieved?

输入格式

The input file will contain data for one or more test cases, one test case per line. Each line will contain three numbers: the initial balance, the annual interest rate (as a percentage of the balance), and the target amount, separated by blank spaces. These will be positive numbers; they may or may not contain a decimal point. The target amount will be greater than the initial balance. The input is terminated by end-of-file

输出格式

For each line of input, your program will produce exactly one line of output: This line will contain one positive integer value: the number of years required to achieve the target amount.

样例

Input
200.00 6.5 300
500 4 1000.00
Output
7
18

74 人解决,82 人已尝试。

79 份提交通过,共有 108 份提交。

2.2 EMB 奖励。

创建: 16 年,3 月前.

修改: 6 年,7 月前.

最后提交: 8 月,2 周前.

来源: Rocky Mountain 2006

题目标签