Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
135160 张暄浩 桃子问题 C++ Accepted 1 MS 260 KB 178 2025-11-02 17:09:18

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; }