Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
128540 周民苡 斐波那契数列 C++ Accepted 2 MS 276 KB 180 2025-08-18 10:40:16

Tests(11/11):


Code:

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