比赛 |
Asm_Def战记之透明计算网络 |
评测结果 |
AAAAAAAAEE |
题目名称 |
Asm_Def排兵布阵 |
最终得分 |
80 |
用户昵称 |
devil |
运行时间 |
2.270 s |
代码语言 |
C++ |
内存使用 |
193.34 MiB |
提交时间 |
2015-11-01 10:19:27 |
显示代码纯文本
#include <cstdlib>
#include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <map>
#include <stack>
#include <vector>
#include <map>
#include <queue>
#include <ctime>
#include <algorithm>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
typedef unsigned int uint;
const int inf=1061109567;
const int maxn=100010;
const int maxm=5010;
const int mod=998244353;
const double pi=3.14;
ll C[maxm][maxm];
ll f[maxn],s[maxn];
int main()
{
freopen("asm_formation.in","r",stdin);
freopen("asm_formation.out","w",stdout);
//clock_t st=clock();
C[0][0]=1;
for(int i=1;i<=5000;i++)
{
C[i][0]=1;
for(int j=1;j<=i;j++)
{
C[i][j]=(C[i-1][j-1]+C[i-1][j])%mod;
}
}
int n,t;scanf("%d",&n);
for(int i=1;i<=n;i++)
{
scanf("%d",&t);
s[i]=s[i-1]+t;
}f[1]=1;
for(int i=2;i<=n;i++)
{
f[i]=(f[i-1]*C[s[i]-1][s[i]-s[i-1]-1])%mod;
}
printf("%lld\n",f[n]%mod);
//clock_t ed=clock();
//printf("\nTime used : %.5lf Ms\n",double(ed-st)/CLOCKS_PER_SEC);
return 0;
}