Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
9250 王循 小明的烦恼 C++ 解答错误 0 0 MS 252 KB 431 2020-11-09 21:50:46

Tests(0/1):


#include <bits/stdc++.h> using namespace std; int f[10000]; int main() { int ss; cin>>ss; for(int i=1;i<=ss;i++) { int n,s=1; cin>>n; f[1]=1; f[2]=3; f[3]=5; if(n<=3) { cout<<f[n]; return 0; } for(int i=4;i<=n;i++) { f[i]=f[i-1]+f[i-2]*2; } cout<<f[n]<<endl; } return 0; }


测评信息: