QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#199556 | #7054. Fibonacci Sequence | lyzqs# | AC ✓ | 0ms | 3416kb | C++14 | 366b | 2023-10-04 13:01:39 | 2023-10-04 13:01:39 |
Judging History
answer
#include <bits/stdc++.h>
#define il inline
#define ll long long
#define int ll
#define Max 200005
using namespace std;
il ll read()
{
char c=getchar();
ll x=0,f=1;
while(c>'9'||c<'0')
{
if(c=='-') f=-1;
c=getchar();
}
while(c>='0'&&c<='9')
{
x=x*10+c-'0';
c=getchar();
}
return x*f;
}
signed main()
{
puts("1 1 2 3 5");
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3416kb
input:
output:
1 1 2 3 5
result:
ok single line: '1 1 2 3 5'