记录编号 127828 评测结果 AAAAAAAAAA
题目名称 查数 最终得分 100
用户昵称 Gravatar天一阁 是否通过 通过
代码语言 C++ 运行时间 0.002 s
提交时间 2014-10-16 13:51:31 内存使用 0.32 MiB
显示代码纯文本
#include<iostream>
#include<cstdio>
#define Mod 12345LL
using namespace std;
long long f[1010],n,pow=1;
int main()
{
	freopen("chashu.in","r",stdin);
	freopen("chashu.out","w",stdout);
	cin>>n;
	f[1]=8+(n==1);
	for(int i=2;i<=n;i++){
		f[i]=(9*(f[i-1]+pow)-f[i-1])%Mod;
		pow=(pow*10)%Mod;
	}
	cout<<(f[n]+Mod)%Mod<<endl;
	return 0;
}