| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 76168 | sh25_shenpy | 【递推】猴子吃枣问题 | C++ | 解答错误 | 0 MS | 240 KB | 186 | 2025-12-16 20:51:00 |
#include<bits/stdc++.h> using namespace std; int m(int n){ return 2*(n+1);} int main(){ int n=1; for(int i=1;i<=10;i++){ n=m(n);} cout<<n; return 0;}