QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#521626#7054. Fibonacci Sequenceblhxzjr#AC ✓0ms16112kbC++20427b2024-08-16 13:24:042024-08-16 13:24:04

Judging History

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

  • [2024-08-16 13:24:04]
  • 评测
  • 测评结果:AC
  • 用时:0ms
  • 内存:16112kb
  • [2024-08-16 13:24:04]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
#define rep(i,a,n) for(int i=a;i<=n;++i)
#define pb push_back
#define endl '\n'
#define int long long 
using ll=long long;
const int N=2e5+10;

int n,m,k,_;

string name[N],c[N];
void solve(){
    cout<<"1 1 2 3 5";
}

signed main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    _=1;
    while(_--){
        solve();
        if(_) cout<<endl;
    }
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:



output:

1 1 2 3 5

result:

ok single line: '1 1 2 3 5'