Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
128708 常钰杰 桃子问题 C++ Accepted 0 MS 256 KB 242 2025-08-19 13:55:29

Tests(1/1):


Code:

#include<bits/stdc++.h> using namespace std; int tz(int day) { if(day == 10) { return 1; } else { return (tz(day + 1) + 1) * 2; } } int main() { cout << tz(1); return 0; }