| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 152725 | 鲁博睿 | 青蛙跳台阶 | C++ | Wrong Answer | 0 MS | 276 KB | 275 | 2026-05-01 20:55:16 |
#include <iostream> using namespace std; int main() { int n; int f = 1; cin >> n; if (n == 1) { cout << 1 << endl; return 0; } for (int i = 2; i <= n; i++) { f *= 2; } cout << f << endl; return 0; }
------Input------
40
------Answer-----
549755813888
------Your output-----
0