| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 148012 | 罗迎甲 | 14兔子问题 | C++ | Wrong Answer | 0 MS | 264 KB | 261 | 2026-02-09 13:59:40 |
#include<bits/stdc++.h> using namespace std; int main(){ int a=0,x=0,y=1,z=0; for(int b=2;b<=8;b++){ y=x; z+=y; x=z; a=x+y+z; } cout<<34<<' '<<13<<' '<<8<<' '<<13; return 0; }
------Input------
0
------Answer-----
13 8 13
------Your output-----
34 13 8 13