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

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

  • [2024-11-02 11:15:55]
  • 评测
  • 测评结果:AC
  • 用时:0ms
  • 内存:3612kb
  • [2024-11-02 11:15:54]
  • 提交

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'