QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#838701#7054. Fibonacci SequencewangxiaoruiAC ✓0ms3536kbC++1494b2024-12-31 18:47:382024-12-31 18:47:39

Judging History

This is the latest submission verdict.

  • [2024-12-31 18:47:39]
  • Judged
  • Verdict: AC
  • Time: 0ms
  • Memory: 3536kb
  • [2024-12-31 18:47:38]
  • Submitted

answer

#include<bits/stdc++.h>
using namespace std;
int main(){
	cout<<"1 1 2 3 5";
	return 0;
}

詳細信息

Test #1:

score: 100
Accepted
time: 0ms
memory: 3536kb

input:



output:

1 1 2 3 5

result:

ok single line: '1 1 2 3 5'