题目描述
一只青蛙一次可以跳上1级台阶,也可以跳上2级台阶。求该青蛙跳上一个 n 级的台阶总共有多少种跳法。
答案需要取模 1e9+7(1000000007),如计算初始结果为:1000000008,请返回 1。
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/qing-wa-tiao-tai-jie-wen-ti-lcof
Java
class Solution {
public int numWays(int n) {
//相当于初始值为1的斐波那契数列
int sum = 0, x = 1, y = 1;
for(int i = 0; i < n; ++i){
sum = (x + y) % 1000000007;
x = y;
y = sum;
}
return x;
}
}