Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
148797 吴昊 14兔子问题 C++ Accepted 0 MS 264 KB 229 2026-02-28 20:03:08

Tests(1/1):


Code:

#include <bits/stdc++.h> using namespace std; int main() { int a=2,b=0,c=0; for(int i=0;i<8;i++){ c+=b; b=a; a=0; a=c; } cout<<a/2<<" "<<b/2<<" "<<c/2; return 0; }