记录编号 |
589020 |
评测结果 |
AAAAAAAAAA |
题目名称 |
大力枚举 |
最终得分 |
100 |
用户昵称 |
蜀山鸭梨大 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.076 s |
提交时间 |
2024-07-02 16:06:26 |
内存使用 |
4.21 MiB |
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
const int mod=1000000007;
int n,a[100005];
long long f[100005][5];
int main(){
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
freopen("enumerate.in","r",stdin);
freopen("enumerate.out","w",stdout);
cin>>n;
for(int i=1;i<=n;i++){
cin>>a[i];
f[i][0]=1;
}
f[0][0]=1;
for(int i=1;i<=n;i++){
for(int j=1;j<=4;j++){
f[i][j]=(f[i-1][j]+(f[i-1][j-1]*a[i])%mod)%mod;
// cout<<f[i][j]<<" ";
}
// cout<<endl;
}
cout<<f[n][4];
return 0;
}