QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#385077#7054. Fibonacci SequencewandwAC ✓0ms3736kbC++17270b2024-04-10 15:15:302024-04-10 15:15:31

Judging History

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

  • [2024-04-10 15:15:31]
  • 评测
  • 测评结果:AC
  • 用时:0ms
  • 内存:3736kb
  • [2024-04-10 15:15:30]
  • 提交

answer

#include<bits/stdc++.h>
 using namespace std;
#define int long long
#define ll long long

    void solve()
 {
   cout<<"1 1 2 3 5";
 }
signed main()
{
    cin.tie(0);
    cout.tie(0);
    ios_base::sync_with_stdio(0);
  
      solve();
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:



output:

1 1 2 3 5

result:

ok single line: '1 1 2 3 5'