QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#242126 | #7054. Fibonacci Sequence | maghrabyJr_# | AC ✓ | 0ms | 3620kb | C++20 | 182b | 2023-11-06 23:09:18 | 2023-11-06 23:09:18 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define int long long
int32_t main() {
cin.tie(0);
cout.sync_with_stdio(0);
cout<<"1 1 2 3 5\n";
}
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 3620kb
input:
output:
1 1 2 3 5
result:
ok single line: '1 1 2 3 5'