#
# 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
#
# 
# @param nums int整型一维数组 
# @return bool布尔型
#
class Solution:
    def canJump(self , nums: List[int]) -> bool:
        # write code here
        maxlong=0
        for n in range(len(nums)):
            if maxlong<n:
                return False
           # if maxlong>len(nums)-1: return True
            maxlong=max(maxlong,n+nums[n])
        return True