Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
110935 廖悦扬 猴子吃桃 C++ 通过 100 0 MS 232 KB 241 2023-11-17 20:42:11

Tests(1/1):


#include <bits/stdc++.h> using namespace std; const int MAXN = 11; int n, a[MAXN]; int main() { n = 10; a[10] = 1; for (int i=9; i>0; i--) { a[i] = (a[i+1]+1)*2; } cout << a[1]; return 0; }


测评信息: