输入有点坑,必须按照编译要求才可以~可能和牛客不一样~ def road(n): if n==0 or n==1: return 1 if n< 0: return 0 f0 = 1 f1 = 1 i = 2 while i<= n: &n...