QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#163799 | #7054. Fibonacci Sequence | wifi32767# | AC ✓ | 2ms | 3580kb | C++20 | 346b | 2023-09-04 15:19:06 | 2023-09-04 15:19:06 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define ll long long
const int MAX = 1e5 + 10;
void solve(){
cout << "1 1 2 3 5";
}
signed main(){
ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
//cout << fixed << setprecision(20);
//while (cin >> n)
//int _;cin >> _;while (_ --)
solve();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 2ms
memory: 3580kb
input:
output:
1 1 2 3 5
result:
ok single line: '1 1 2 3 5'