hdoj 1021||nbut 1013 Fibonacci Again (规律)

校赛时被一个规律题给虐了,今天又看了下这题,恰巧hdu的ppt上有该题。题意是判断n<1000000的斐波那契数能否被3整除,直接做的话肯定不行,要借助这个跳一跳。即可以根据斐波那契数列把前面50个或者100个数的情况打印出来然后找规律(简单的行,如本题)

hdoj 1021||nbut 1013 Fibonacci Again (规律)_第1张图片

明显,隔四个就会出现一个符合要求的数字。从2开始,n%8==2||n%8==6....yes

#include<cstdio>
#include <iostream>
#include <string>
#include <vector>
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;
}


你可能感兴趣的:(hdoj 1021||nbut 1013 Fibonacci Again (规律))