比赛 |
test2 |
评测结果 |
AAAAA |
题目名称 |
数的计数 |
最终得分 |
100 |
用户昵称 |
31627012 |
运行时间 |
0.000 s |
代码语言 |
C++ |
内存使用 |
0.00 MiB |
提交时间 |
2017-03-12 20:33:13 |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cmath>
#include<algorithm>
#include<stack>
#include<queue>
#include<cstring>
#define itn int
using namespace std;
int n,temp,ans=0,a[1001];
inline void work(){
a[1]=1;
for (int i=2;i<=1000;i++){
int temp=i/2;
for (int j=1;j<=temp;j++){
a[i]+=a[j];
}
a[i]++;
}
}
int Main(){
freopen("nums.in","r",stdin);
freopen("nums.out","w",stdout);
scanf("%d",&n);
work();
printf("%d",a[n]);
return 0;
}
int main(){;}
int xlm=Main();