[백준] #1436 영화감독 숌 python
2022. 12. 30. 13:06
https://www.acmicpc.net/problem/1436
📕 설명 📕
하나씩 비교하는 brute-force로 풀이하였다.
가장 작은 수인 666부터 시작하여 하나씩 비교해가며 풀이하였다.
🧑🏻💻 나의 풀이 🧑🏻💻
N = int(input())
six_number = 666
count = 0
result = 0
while True:
if '666' in str(six_number):
count += 1
if count == N:
result = six_number
break
six_number += 1
print(result)
'Programming > Algorithm' 카테고리의 다른 글
[백준] #10815 숫자 카드 python (0) | 2022.12.30 |
---|---|
[백준] #1018 체스판 다시 칠하기 python (0) | 2022.12.30 |
[백준] #7568 덩치 python (4) | 2022.12.28 |
[백준] #2231 분해합 python (0) | 2022.12.28 |
[백준] #2798 블랙잭 python (0) | 2022.12.28 |