TLE AC AC TLE TLE 了 求救啊~
查看原帖
TLE AC AC TLE TLE 了 求救啊~
490472
奋斗de崽崽楼主2021/3/8 20:13

n=int(input()) def fib(n): if n==1 or n==2: return 1 if n==0: return 0 else: return fib(n-1)+fib(n-2) print(format(fib(n),'.2f'))

2021/3/8 20:13
加载中...