Hide

Problem A
Toggi

Languages en is

Toggi loves the number π. Toggi quite likes making his computer calulate π but that can take quite a long time, depends a bit on the number of digits he wants to calculate. If he calculates the first n digits of π it takes nlog10(n)/106 seconds, where log10 denotes a logarithm of base 10. He wants to know to how many digits of π he can calculate in the time he has. Help him find out.

Input

You are given an integer C, the number of seconds Toggi has.

Output

One line containing the integer n, the maximum number of digits of π that Toggi can calculate in C seconds.

Explanation of Sample Inputs

Toggi can calculate 189481 digits in one second because

189481log10(189481)/1060.99999842035407941

But he can’t calculate more digits in a single seond beause

189482log10(189482)/1061.0000041322153754>1

Scoring

The solution will be tested on input data of varying difficulty and the data is divided into groups as shown in the table below. The solution will then be scored according to how many groups are solved.

Group

Points

Constraints

1

10

1C5

2

20

1C50

3

30

1C2000

4

20

1C104

5

20

1C109

Sample Input 1 Sample Output 1
1
189481
Hide

Please log in to submit a solution to this problem

Log in