1
0

lcs01.py 118 B

123456
  1. import math
  2. def least_minutes(n: int) -> int:
  3. if n == 0:
  4. return 0
  5. return math.ceil(math.log2(n)) + 1
备用站点 当前处于降级运行的备用站点,仅供应急访问,数据和功能可能不是最新。