LeetCode 319 Bulb Switcher (Python)

Posted by 小明MaxMing on April 26, 2023

题目

There are n bulbs that are initially off. You first turn on all the bulbs, then you turn off every second bulb.

On the third round, you toggle every third bulb (turning on if it’s off or turning off if it’s on). For the ith round, you toggle every i bulb. For the nth round, you only toggle the last bulb.

Return the number of bulbs that are on after n rounds.

解题思路

只有处在完全平方数位置的灯泡会亮

代码

class Solution:
    def bulbSwitch(self, n: int) -> int:
        return int(sqrt(n))

视频讲解 YouTube<--欢迎点击订阅

视频讲解 bilibili<--欢迎点击订阅