QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#199556#7054. Fibonacci Sequencelyzqs#AC ✓0ms3416kbC++14366b2023-10-04 13:01:392023-10-04 13:01:39

Judging History

This is the latest submission verdict.

  • [2023-10-04 13:01:39]
  • Judged
  • Verdict: AC
  • Time: 0ms
  • Memory: 3416kb
  • [2023-10-04 13:01:39]
  • Submitted

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'