Cometin'

BOJ-1436 - Python

2020-07-03 at Algorithm category

666이 들어간 수 중에 n번째로 큰 수를 출력하는 문제. 브루트포스 방법으로 풀었다.

n, i, j = int(input()), 0, 665
while i != n:
    j += 1
    if '666' in str(j): i += 1
print(j)

hyesungoh

Personal blog by hyesungoh.

I like to share my knowledge for those who wandering in issue.