HDU 1021[Fibonacci Again]规律
Posted 哇咔咔咔
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU 1021[Fibonacci Again]规律相关的知识,希望对你有一定的参考价值。
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1021
题目大意:首两项为7,11的斐波那契数列。若第n项能被3整除,输出yes,否则输出no
关键思想:模三加法情况有限,找规律。
代码如下:
#include <iostream> using namespace std; int main(){ int n; while(cin>>n) if(n%8==2||n%8==6)cout<<"yes"<<endl; else cout<<"no"<<endl; return 0; }
以上是关于HDU 1021[Fibonacci Again]规律的主要内容,如果未能解决你的问题,请参考以下文章
快速幂 HDU-1021 Fibonacci Again , HDU-1061 Rightmost Digit , HDU-2674 N!Again