#38184: 不能一直遞迴會超時


11131039@stu.tshs.tp.edu.tw (二孝25林孟希)

學校 : 不指定學校
編號 : 201083
來源 : [36.227.70.244]
最後登入時間 :
2024-05-22 06:16:38
k402. 費氏數列 | From: [36.225.104.248] | 發表日期 : 2023-11-01 22:02

#include <bits/stdc++.h>
using namespace std;


int main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    long long n; cin>>n;
    long long table[3]={0,1,1};
    for(int i=2;i<n;i++)
    {
        table[2]=table[0]+table[1];
        table[0]=table[1];
        table[1]=table[2];
    }
    cout<<table[2];
}

 
ZeroJudge Forum