Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
104907 Fess 猴子吃桃 C++ 通过 100 0 MS 228 KB 156 2023-10-04 10:59:45

Tests(1/1):


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


测评信息: