Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
129623 黄俊然 斐波那契数列 C++ Wrong Answer 1 MS 264 KB 419 2025-08-29 20:38:38

Tests(0/11):


Code:

#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ long long fib=1,f1=1,f2=1,n; cin>>n; for(int i=3;i<+n;i++){ fib=f1+f2; f2=f1; f1=fib; } cout<<fib; return 0; }


Run Info:

------Input------
36
------Answer-----
14930352
------Your output-----
9227465