QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#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;
}
详细
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'