Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
143750 陈家宝 数的计数 C++ 通过 100 0 MS 248 KB 226 2024-04-18 13:31:29

Tests(5/5):


#include<bits/stdc++.h> using namespace std; int n,cnt=1; void func(int x){ for(int i=1;i<=x/2;i++){ cnt++; func(i); } } int main(){ cin>>n; func(n); cout<<cnt; return 0; }


测评信息: