Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
129784 韩立鹏 兔子永生 C++ 通过 100 0 MS 232 KB 244 2024-01-27 10:52:55

Tests(1/1):


#include<bits/stdc++.h> using namespace std; int main() { long long f1=1,f2=1; cout<<f1<<" "<<f2<<" "; for(int i=1;i<=19;i++){ f1=f1+f2; f2=f1+f2; cout<<f1<<" "<<f2<<" "; if(f2%3==0){ cout<<endl; } } return 0; }


测评信息: