比赛 test2 评测结果 AWWWT
题目名称 数的计数 最终得分 20
用户昵称 东林桂香 运行时间 1.132 s
代码语言 C++ 内存使用 0.32 MiB
提交时间 2017-03-12 19:38:51
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cmath>
#include<algorithm>
using namespace std;
int n;
int a[1010];
int hahaha(int x){
	a[1]=1;
	a[2]=2;
	int p=x/2;
	for(int i=p;i>0;i--)
	{
		a[x]+=hahaha(i);
	}
	return a[x]; 
}
int main()
{
	freopen("nums.in","r",stdin);
	freopen("nums.out","w",stdout);
	scanf("%d",&n);
	hahaha(n);
	a[n]++;
	printf("%d",a[n]);
	fclose(stdin);
	fclose(stdout);
	return 0;
}