比赛 |
NOIP2023模拟赛2 |
评测结果 |
WWWWWEEEEE |
题目名称 |
铺路 |
最终得分 |
0 |
用户昵称 |
小金 |
运行时间 |
0.985 s |
代码语言 |
C++ |
内存使用 |
6.68 MiB |
提交时间 |
2023-11-14 12:43:19 |
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
long long f[1000010];
int t,a[55],ma=0;
int main()
{
freopen("obsession.in","r",stdin);
freopen("obsession.out","w",stdout);
cin>>t;
for(int i=1;i<=t;i++)
{
cin>>a[i];
if(a[i]>ma)
{
ma=a[i];
}
}
f[1]=0;
f[2]=0;
for(int i=3;i<=ma;i++)
{
f[i]=(2*f[i-1]+2*f[i-2]+2)%1000000007;
}
for(int i=1;i<=t;i++)
{
cout<<f[a[i]]<<endl;
}
return 0;
}