题库练习 Tennis Championship
← 上一题 下一题 →

A10762 | Tennis Championship

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

Famous Brazil city Rio de Janeiro holds a tennis tournament and Ostap Bender doesn't want to miss this event. There will be $n$ 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 $n$ ( $2<=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
C++ 编辑器
输入
输出