Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
92942 石水生 斐波那契数列 C++ Accepted 1 MS 272 KB 209 2024-10-07 10:12:54

Tests(11/11):


Code:

#include <bits/stdc++.h> using namespace std; int main() { int n,a=1,b=1,c; cin>>n; if(n==1&&n==2){ cout<<1; return 0; } for(int i=3;i<=n; i++) { c=a+b; a=b; b=c; } cout<<b; }