Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
105100 | 吴宗桦 | 数的计数 | C++ | 解答错误 | 0 | 0 MS | 260 KB | 297 | 2023-10-05 10:25:51 |
#include<iostream> using namespace std; int f[1001]; int shenma(int x) { if(!f[x]) { if(x==1) f[x]=1; else if(x%2) f[x]=shenma(x-1); else f[x]=shenma(x-1)+shenma(x/2); } return f[x]; } int main() { int a; cin>>a; cout<<shenma(a)+1; return 0; }