Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
9251 顾郁铭 贴瓷砖 C++ 通过 100 6 MS 248 KB 288 2020-11-10 15:56:52

Tests(1/1):


#include<bits/stdc++.h> using namespace std; int t,a; int f(int n){ if(n==1) return 1; if(n==2) return 3; return f(n-1)+2*f(n-2); } int main(){ cin>>t; for(int i=1;i<=t;i++){ cin>>a; cout<<f(a)<<" "; } //system("pause"); return 0; }


测评信息: