Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
143771 陈家宝 猴子吃桃 C++ 通过 100 0 MS 236 KB 153 2024-04-18 13:41:17

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; }


测评信息: