比赛 20130923 评测结果 AAAAAAAAAA
题目名称 鬼谷子的钱袋 最终得分 100
用户昵称 葳棠殇 运行时间 0.002 s
代码语言 C++ 内存使用 0.29 MiB
提交时间 2015-10-12 21:35:39
显示代码纯文本
#include<cstdio>
#include<cmath>
using namespace std;
int n;
void print(int x)
{
	if(x==1)
	{

	}
	else
	{
		print(x/2);
	}
    printf("%d ",x-x/2);
}
int main()
{
   	freopen("wallet.in","r",stdin);
	freopen("wallet.out","w",stdout);
	scanf("%d",&n);
	printf("%d\n",(int)(log2(n))+1);
	print(n);
	getchar();getchar();
}