Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
111773 | 梁乃元 | 爬楼梯 | C++ | 通过 | 100 | 0 MS | 240 KB | 275 | 2023-11-25 08:01:46 |
# include <iostream> using namespace std ; long long str ( int x ) { if ( x == 1 ) { return 1 ; } if ( x == 2 ) { return 2 ; } return str ( x - 1 ) + str ( x - 2 ) ; } int main ( ) { long long n ; cin >> n ; cout << str ( n ) ; return 0 ; }