Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
99421 | 万隽宇 | PELL数列 | C++ | Accepted | 111 MS | 528 KB | 546 | 2024-11-28 18:43:03 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ long long n,num; cin>>n; long long pell[100000]; pell[1]=1; pell[2]=2; for(int i=0;i<n;i++){ cin>>num; for(int j=3;j<=num;j++){ pell[j]=(2*pell[j-1]+pell[j-2])%32767; } cout<<pell[num]<<endl; } return 0; }