Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
155377 周荣浩 桃子问题 C++ Wrong Answer 0 MS 272 KB 185 2026-06-07 11:03:04

Tests(0/1):


Code:

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


Run Info:

------Input------
0
------Answer-----
1534
------Your output-----
512