QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#163799#7054. Fibonacci Sequencewifi32767#AC ✓2ms3580kbC++20346b2023-09-04 15:19:062023-09-04 15:19:06

Judging History

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

  • [2023-09-04 15:19:06]
  • 评测
  • 测评结果:AC
  • 用时:2ms
  • 内存:3580kb
  • [2023-09-04 15:19:06]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
#define ll long long
const int MAX = 1e5 + 10;


void solve(){
    cout << "1 1 2 3 5";
}
signed main(){
    ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
    //cout << fixed << setprecision(20);
    //while (cin >> n)
    //int _;cin >> _;while (_ --)
    	solve();
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 2ms
memory: 3580kb

input:



output:

1 1 2 3 5

result:

ok single line: '1 1 2 3 5'