Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
153361 鲁博睿 青蛙跳台阶 C++ Wrong Answer 1 MS 268 KB 230 2026-05-16 12:21:14

Tests(0/10):


Code:

#include<bits/stdc++.h> using namespace std; int fl(int n) { if (n == 1) { return 1; } return 2 * fl(n - 1); } int main() { int n; cin >> n; cout << fl(n) << endl; return 0; }


Run Info:

------Input------
40
------Answer-----
549755813888
------Your output-----
0