比赛 |
20130923 |
评测结果 |
AAAAAAAAAA |
题目名称 |
鬼谷子的钱袋 |
最终得分 |
100 |
用户昵称 |
mikumikumi |
运行时间 |
0.003 s |
代码语言 |
C++ |
内存使用 |
0.31 MiB |
提交时间 |
2015-10-12 19:33:36 |
显示代码纯文本
#include<cstdio>
#include<iostream>
using namespace std;
typedef long long LL;
LL m;
int ans=0;
LL ans2[100]={0};
void dfs(LL x)
{
if(x==1)
{
ans2[++ans]=x;
return;
}
dfs(x/2);
ans2[++ans]=(x-1)/2+1;
}
int main()
{
freopen("wallet.in","r",stdin);
freopen("wallet.out","w",stdout);
scanf("%lld",&m);
dfs(m);
printf("%d\n",ans);
for(int i=1;i<=ans;i++) printf("%d ",ans2[i]);
return 0;
}