Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
2197 | 吴奕希 | 14兔子问题 | C++ | Wrong Answer | 0 MS | 260 KB | 267 | 2023-12-16 18:20:38 |
# include<iostream> using namespace std; int main() { int x = 1, y = 0, z = 0; for(int i = 0; i < 8; i++) { y += x; x = 0; z += y; y = 0; x += z; } printf("%d %d %d", x, y, z); return 0; }
------Input------
0
------Answer-----
13 8 13
------Your output-----
128 0 128