| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 148017 | 罗迎甲 | 14兔子问题 | C++ | Wrong Answer | 0 MS | 260 KB | 250 | 2026-02-09 14:03:04 |
#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<<x<<' '<<y<<' '<<z; return 0; }
------Input------
0
------Answer-----
13 8 13
------Your output-----
0 0 0