Run ID:128703
提交时间:2025-08-19 13:53:29
#include<bits/stdc++.h> using namespace std; int tz(int day) { if(day == 10) { return 1; } else { return tz(day + 1) * 2 + 1; } } int main() { cout << tz(1); return 0; }