比赛 |
NOIP_1 |
评测结果 |
AAAAAAAAAA |
题目名称 |
圆弦 |
最终得分 |
100 |
用户昵称 |
CockRoachEr |
运行时间 |
0.000 s |
代码语言 |
C++ |
内存使用 |
0.00 MiB |
提交时间 |
2009-07-20 11:17:59 |
显示代码纯文本
#include<stdio.h>
#include<math.h>
#include<string.h>
#include<string>
#include<stdlib.h>
typedef long long int64;
int i,j,k;
int a[100001];
int temp;
int n;
int64 ans;
int main (void)
{
freopen("circlex.in","r",stdin);
freopen("circlex.out","w",stdout);
scanf("%d",&n);
a[0]=1;
a[1]=1;
for(i=2;i<=n;i++)
{
for(j=0;j<=i-2;j++)
{
a[i]=(a[i]+a[j]*a[i-j-2]) % 12345;
}
a[i]=(a[i]+a[i-1]) % 12345;
}
printf("%d\n",a[n]);
return 0;
}