记录编号 |
589012 |
评测结果 |
AAAAAAAAAA |
题目名称 |
大力枚举 |
最终得分 |
100 |
用户昵称 |
wdsjl |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.016 s |
提交时间 |
2024-07-02 15:21:01 |
内存使用 |
2.83 MiB |
显示代码纯文本
#include <bits/stdc++.h>
using namespace std;
const int Mod = 1000000007;
const int N = 100010;
long long n,a[N],f[N][10];
int main(){
freopen("enumerate.in","r",stdin);
freopen("enumerate.out","w",stdout);
scanf("%lld",&n);
for(int i=1;i<=n;i++)scanf("%lld",&a[i]);
for(int i=0;i<=n;i++)f[i][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;
}
printf("%lld",f[n][4]);
return 0;
}