yes
Time Limit: 1 seconds
Memory Limit: 256 MB
Rating: 1200
Problem StatementThe mastermind’s safehouse is at the top of a towering staircase. The only way to reach the safehouse is by climbing the stairs, and the guards have set a rule: you can climb either 1 or 2 steps at a time. Determine how many distinct ways you can climb to the top. Input is denoted by an integer $N$, the total number of steps in the staircase. Each step can be taken as a single step or as part of a double step. The output should be the total number of distinct ways to climb to the top. For example, for $N = 4$, there are $5$ distinct ways to climb: $(1+1+1+1), (1+2+1), (2+1+1), (1+1+2), (2+2).$
InputYou are given an integer $N$. $1 \le N \le 1{,}000$
OutputOutput the answer described in the problem statement.
Sample CasesSample Input 1: 4 Sample Output 1: 5Explanation
Note: This problem may be unsolvable in some programming languages due to the large input size.
SourcesKL Coding Cup March 2025 > Speed Round > Problem 6
Submit | Back