Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
29598 WZH Pell数列 C++ 解答错误 0 MS 252 KB 242 2023-10-31 20:40:40

Tests(0/1):


#include<iostream> using namespace std; int q[1000010]; int n,k; int main() { cin>>n; q[1]=1; q[2]=1; while(n--){ cin>>k; for(int i=3;i<=k;i++){ q[i]=(2*q[i-1]+q[i-2])%32767; } cout<<q[k]<<endl; } return 0; }


测评信息: