Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
112408 CBCode 爬楼梯 C++ 通过 100 0 MS 248 KB 284 2023-11-26 19:07:43

Tests(3/3):


#include <bits/stdc++.h> using namespace std; typedef long long ll; int main() { int n; cin >> n; ll f1 = 1, f2 = 2; for(int i = 3; i <= n; i++) { ll tmp = f2; f2 = f1 + f2; f1 = tmp; } cout << f2 << '\n'; return 0; }


测评信息: