Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
105086 李承瀚 数的计数 C++ 通过 100 0 MS 192 KB 221 2023-10-05 10:16:09

Tests(5/5):


#include<cstdio> using namespace std; int n,cnt=1; void func(int x){ for(int i=1;i<=x/2;i++){ cnt++; func(i); } } int main(){ scanf("%d",&n); func(n); printf("%d\n",cnt); }


测评信息: