319. Bulb Switcher

LeetCode medium original: C# #csharp #leetcode #math #medium #string
선택한 UI 언어에 맞게 문제 텍스트를 러시아어에서 번역합니다. 코드는 변경하지 않습니다.

Есть n лампочек, которые изначально выключены. Сначала вы включаете все лампочки, затем выключаете каждую вторую лампочку.

На третьем раунде вы переключаете каждую третью лампочку (включаете, если она выключена, или выключаете, если она включена). На i-ом раунде вы переключаете каждую i-ую лампочку. На n-ом раунде вы переключаете только последнюю лампочку.

return количество лампочек, которые будут включены после n раундов.

예제

Input: n = 3

Output: 1

Explanation: At first, the three bulbs are [off, off, off].

After the first round, the three bulbs are [on, on, on].

After the second round, the three bulbs are [on, off, on].

After the third round, the three bulbs are [on, off, off].

So you should return 1 because there is only one bulb is on.

Explanation: The two words can be "abcw", "xtfn".

C# 해법

매칭됨/원본
public class Solution {
    public int BulbSwitch(int n) {
        return (int) Math.Sqrt(n);
    }
}

C++ 해법

자동 초안, 제출 전 검토
#include <bits/stdc++.h>
using namespace std;

// Auto-generated C++ draft from the C# solution. Review containers, LINQ and helper types before submit.
class Solution {
public:
    public int BulbSwitch(int n) {
        return (int) Math.Sqrt(n);
    }
}

Java 해법

매칭됨/원본
class Solution {
    public int bulbSwitch(int n) {
        return (int) Math.sqrt(n);
    }
}

JavaScript 해법

매칭됨/원본
var bulbSwitch = function(n) {
    return Math.floor(Math.sqrt(n));
};

Python 해법

매칭됨/원본
class Solution:
    def bulbSwitch(self, n: int) -> int:
        return int(n ** 0.5)

Go 해법

매칭됨/원본
import "math"

func bulbSwitch(n int) int {
    return int(math.Sqrt(float64(n)))
}

Algorithm

Инициализация

Лампочка остается включенной, если она переключалась нечетное количество раз. Лампочка будет переключаться на каждом делителе её номера.

정의 состояния лампочки

Лампочка останется включенной только в том случае, если у нее нечетное количество делителей, что возможно только для квадратных чисел.

Подсчет включенных лампочек

Количество лампочек, которые будут включены после n раундов.

😎

Vacancies for this task

활성 채용 with overlapping task tags are 표시됨.

전체 채용
아직 활성 채용이 없습니다.