Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
105092 沈梓珺 数的计数 C++ 通过 100 1 MS 248 KB 197 2023-10-05 10:19:00

Tests(5/5):


#include<bits/stdc++.h> using namespace std; int f(int n){ if(n==1) return 1; if(n%2==1) return f(n-1); return f(n-1)+f(n/2); } int main(){ int n; cin>>n; cout<<f(n); return 0; }


测评信息: