[백준/파이썬] 1436번

민정·2023년 8월 17일
0

[백준/파이썬]

목록 보기
165/245
post-thumbnail

📍백준 1436번 문제

https://www.acmicpc.net/problem/1436

코드

import sys
input = sys.stdin.readline

n = int(input())

six = 666
cnt = 0
while True:
    if '666' in str(six):
        cnt += 1
    if cnt == n:
        print(six)
        break
    six += 1

풀이

666부터 시작해서 모든 수를 탐색하고, 666이 존재하면 그에 맞게 cnt에 1을 더하면 된다.

profile
パㅔバ6ㅇr 덤벼ㄹΓ :-0

0개의 댓글