题目
原题链接:A. Hexadecimal's theorem
题意
给出数字n,问是否能在菲波那切数列找到三个之和等于他的数。
代码
#include
using namespace std;
int main() {
int s[10000],l;
s[0]=0,s[1]=1;
for(l=2;;l++){
s[l]=s[l-2]+s[l-1];
if(s[l]>1e9) break;
}
int n;
cin>>n;
for(int i=0;i