QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#838701 | #7054. Fibonacci Sequence | wangxiaorui | AC ✓ | 0ms | 3536kb | C++14 | 94b | 2024-12-31 18:47:38 | 2024-12-31 18:47:39 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
int main(){
cout<<"1 1 2 3 5";
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3536kb
input:
output:
1 1 2 3 5
result:
ok single line: '1 1 2 3 5'