[BOJ 15228] 3D Printed Statues

View as PDF

Submit solution

Points: 2
Time limit: 2.0s
Memory limit: 512M

Problem types
Allowed languages
Assembly, Awk, C, C++, Java, Pascal, Perl, Python, Sed, Text

You have a single 3D printer, and would like to use it to produce n statues. However, printing the statues one by one on the 3D printer takes a long time, so it may be more time-efficient to first use the 3D printer to print a new printer. That new printer may then in turn be used to print statues or even more printers. Print jobs take a full day, and every day you can choose for each printer in your possession to have it print a statue, or to have it 3D print a new printer (which becomes available for use the next day).</p>

What is the minimum possible number of days needed to print at least n statues?

입력 형식

The input contains a single integer n (1 ≤ n ≤ 10 000), the number of statues you need to print.

출력 형식

Output a single integer, the minimum number of days needed to print at least n statues.

예제 입력 1

1

예제 출력 1

1

예제 입력 2

5

예제 출력 2

4

Comments

There are no comments at the moment.