QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#231815 | #7054. Fibonacci Sequence | Ycfhnnd | AC ✓ | 0ms | 3648kb | C++20 | 338b | 2023-10-29 16:44:47 | 2023-10-29 16:44:48 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
using i64 = long long;
void solve() {
cout << 1 << " " << 1 << " " << 2 << " " << 3 << " " << 5 << "\n";
}
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int T = 1;
// cin >> T;
while (T--) {
solve();
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3648kb
input:
output:
1 1 2 3 5
result:
ok single line: '1 1 2 3 5'