B - Fibonacci Again
生活随笔
收集整理的這篇文章主要介紹了
B - Fibonacci Again
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
B - Fibonacci Again
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
0
1
2
3
4
5
Sample Output
no
no
yes
no
no
no
根據斐波那契數列的規律,每隔四個就可以被三整除
這里列出前20項
總結
以上是生活随笔為你收集整理的B - Fibonacci Again的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: A - 整除的尾数
- 下一篇: C - 3 求正弦值