Fibonacci Again
Problem Description
There are another kind of Fibonacci numbers: F(0) = 7, F(1) = 11, F(n) = F(n-1) + F(n-2) (n>=2).
Input
Input consists of a sequence of lines, each containing an integer n. (n < 1,000,000).
Output
Print the word “yes” if 3 divide evenly into F(n).
Print the word “no” if not.
Sample Input
1 | 0 |
Sample Output
1 | no |
Author
Leojay
Code
这是一道规律题,将Fibonacci数列对3取模输出后,可以发现是一个周期为8的数列.
1 |
|