| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 104721 | 毛泓博(做题专用,大号Fess) | 猴子吃桃 | C++ | Accepted | 100 | 0 MS | 236 KB | 156 | 2023-10-04 08:32:23 |
#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; }