QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#385073#7054. Fibonacci SequencewandwWA 0ms3684kbC++17305b2024-04-10 15:14:422024-04-10 15:14:43

Judging History

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

  • [2024-04-10 15:14:43]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3684kb
  • [2024-04-10 15:14:42]
  • 提交

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);
    int t;
    cin>>t;
    while(t--)
      solve();
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 3684kb

input:



output:


result:

wrong answer 1st lines differ - expected: '1 1 2 3 5', found: ''