CF735C.Tennis Championship

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Famous Brazil city Rio de Janeiro holds a tennis tournament and Ostap Bender doesn't want to miss this event. There will be nn players participating, and the tournament will follow knockout rules from the very first game. That means, that if someone loses a game he leaves the tournament immediately.

Organizers are still arranging tournament grid (i.e. the order games will happen and who is going to play with whom) but they have already fixed one rule: two players can play against each other only if the number of games one of them has already played differs by no more than one from the number of games the other one has already played. Of course, both players had to win all their games in order to continue participating in the tournament.

Tournament hasn't started yet so the audience is a bit bored. Ostap decided to find out what is the maximum number of games the winner of the tournament can take part in (assuming the rule above is used). However, it is unlikely he can deal with this problem without your help.

输入格式

The only line of the input contains a single integer nn ( 2<=n<=10182<=n<=10^{18} ) — the number of players to participate in the tournament.

输出格式

Print the maximum number of games in which the winner of the tournament can take part.

输入输出样例

  • 输入#1

    2
    

    输出#1

    1
    
  • 输入#2

    3
    

    输出#2

    2
    
  • 输入#3

    4
    

    输出#3

    2
    
  • 输入#4

    10
    

    输出#4

    4
    

说明/提示

In all samples we consider that player number 11 is the winner.

In the first sample, there would be only one game so the answer is 11 .

In the second sample, player 11 can consequently beat players 22 and 33 .

In the third sample, player 11 can't play with each other player as after he plays with players 22 and 33 he can't play against player 44 , as he has 00 games played, while player 11 already played 22 . Thus, the answer is 22 and to achieve we make pairs (1,2)(1,2) and (3,4)(3,4) and then clash the winners.

首页