Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
8689 季洁 小明的烦恼 C++ 通过 100 0 MS 248 KB 257 2020-11-01 20:05:47

Tests(1/1):


#include<bits/stdc++.h> using namespace std; int fun(int a){ int f=1; for(int i=2;i<=a;i++){ if(i%2==0) f=f*2+1; else f=f*2-1; } return f; } int main(){ int n,x; cin>>n; for(int i=1;i<=n;i++){ cin>>x; cout<<fun(x)<<endl; } }


测评信息: