void getC()
{
c[0][0]=1;
for(int i=1;i<=1000;++i)
{
c[i][0]=c[i][i]=1;
for(int j=1;j<=i/2;++j)
{
c[i][j]=(c[i-1][j]+c[i-1][j-1])%mod;
c[i][i-j]=c[i][j];
}
}
}
2024-03-09 08:58:47
void getC()
{
c[0][0]=1;
for(int i=1;i<=1000;++i)
{
c[i][0]=c[i][i]=1;
for(int j=1;j<=i/2;++j)
{
c[i][j]=(c[i-1][j]+c[i-1][j-1])%mod;
c[i][i-j]=c[i][j];
}
}
}