Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
12539 蒋瀚辉 【基础题】菲波拉契数列 C++ Accepted 1 MS 684 KB 160 2021-05-21 13:46:09

Tests(1/1):


Code:

#include <bits/stdc++.h> using namespace std; int main() { cout << "0 1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987 1597 2584 4181 6765"; return 0; }