Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
135012 王金檐 桃子问题 C++ Accepted 1 MS 264 KB 174 2025-11-02 10:43:17

Tests(1/1):


Code:

#include<bits/stdc++.h> using namespace std; int t(int n,int i){ if(i>1){ t((n+1)*2,i-1); }else{ return n; } } int main(){ cout<<t(1,10); return 0; }