QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#699922#7054. Fibonacci SequenceLoxilante#AC ✓0ms3612kbC++14665b2024-11-02 11:15:542024-11-02 11:15:55

Judging History

This is the latest submission verdict.

  • [2024-11-02 11:15:55]
  • Judged
  • Verdict: AC
  • Time: 0ms
  • Memory: 3612kb
  • [2024-11-02 11:15:54]
  • Submitted

answer

#define F_C
#include <bits/stdc++.h>
#define rep(i, l, r) for(int i = l; i < r; i++)
#define hrp(i, l, r) for(int i = l; i <= r; i++)
#define rev(i, r, l) for(int i = r; i >= l; i--)
#define int ll
using namespace std;
typedef long long ll;
template<typename tn = int> tn next(void) { tn k; cin>>k; return k; }
#ifndef LOCAL
#define D(...) 0
#endif
signed main(void)
{
    #ifdef LOCAL
//	freopen("C:\\Users\\Loxil\\Desktop\\IN.txt", "r", stdin);
//	freopen("C:\\Users\\Loxil\\Desktop\\OUT.txt", "w", stdout);
    #endif
    
    ios::sync_with_stdio(false);
    cin.tie(0);
    
    cout<<"1 1 2 3 5"<<endl;
    
    return 0;
}
/*

 */

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:



output:

1 1 2 3 5

result:

ok single line: '1 1 2 3 5'