[백준] 1436: 영화감독 숌 (Python)

JiKwang Jeong·2021년 10월 1일
0
post-custom-banner

문제📖

풀이🙏

  • number가 666을 포함한 경우 count를 1씩 증가하고 매 반복문 마다 number를 1씩 증가한다.
  • 만일 count와 입력한 n의 값이 같은 경우 그때의 number를 출력하고 반복문을 벗어난다.

코드💻

n = int(input())
number = 666
count = 0

while True:
    if '666' in str(number):
        count+=1
    if count == n:
        print(number)
        break
    number+=1
profile
기억보다 기록, 난리보다 정리

0개의 댓글