Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
105101 | 吴宗桦 | 数的计数 | C++ | 通过 | 100 | 0 MS | 260 KB | 295 | 2023-10-05 10:26:16 |
#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); return 0; }