记录编号 | 192809 | 评测结果 | AAAAAAAAAA | ||
---|---|---|---|---|---|
题目名称 | [HNOI 2006]鬼谷子的钱袋 | 最终得分 | 100 | ||
用户昵称 | 是否通过 | 通过 | |||
代码语言 | C++ | 运行时间 | 0.003 s | ||
提交时间 | 2015-10-12 22:10:12 | 内存使用 | 0.31 MiB | ||
#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; }