QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#242175#7054. Fibonacci SequenceAnwar#AC ✓0ms3576kbC++20267b2023-11-07 00:15:572023-11-07 00:15:58

Judging History

你现在查看的是最新测评结果

  • [2023-11-07 00:15:58]
  • 评测
  • 测评结果:AC
  • 用时:0ms
  • 内存:3576kb
  • [2023-11-07 00:15:57]
  • 提交

answer

#include <bits/stdc++.h>

using namespace std;
typedef long long ll;

const int N = 1e5 + 3 , MOD =  1e9 + 7;

int32_t main() {

    cin.tie(0);cin.sync_with_stdio(0);
    cout.tie(0);cout.sync_with_stdio(0);

    cout << "1 1 2 3 5" ;

    return 0;
}

详细

Test #1:

score: 100
Accepted
time: 0ms
memory: 3576kb

input:



output:

1 1 2 3 5

result:

ok single line: '1 1 2 3 5'