public class Solution {
    public int jumpFloorII(int target) {
        return (int) Math.pow(2, target - 1);
    }
}