Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
151031 赖泓宇 斐波那契数列 C++ Wrong Answer 1 MS 264 KB 381 2026-04-03 18:59:55

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(){ int n,a=1,b=1,c=1; cin>>n; for(int i=3;i<=n;i++){ c=i; a=b; b=c; } cout<<c; }


Run Info:

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