记录编号 26598 评测结果 AAAAAAAAAA
题目名称 失落的神庙 最终得分 100
用户昵称 GravatarPurpleShadow 是否通过 通过
代码语言 C++ 运行时间 2.520 s
提交时间 2011-07-25 15:11:14 内存使用 76.55 MiB
显示代码纯文本
#include <cstdio>
#include <cstring>
const int N=10000010;
typedef long long LL;
LL n;
LL F[N];
LL find(LL n)
{
	if (n<N) return F[n];else
	return find(n/2)+find(n/3)+find(n/5)+find(n/7);
}
int main()
{
freopen("losttemple.in","r",stdin);
freopen("losttemple.out","w",stdout);
	scanf("%lld",&n);
	F[0]=1;F[1]=1;
	for (int i=2;i<N;++i)
		F[i]=F[i/2]+F[i/3]+F[i/5]+F[i/7];
	if (n<N) printf("%lld\n",F[n]);else printf("%lld\n",find(n));
	return 0;
}