# 1436 영화감독 숌
# 브루트포스 알고리즘 : 모든 영역을 전체 탐색
import sys
input = sys.stdin.readline
N = int(input())
result = 0
cnt = 0
# 666이 들어간 수를 찾는다.
while cnt != N:
if '666' in str(result):
cnt += 1
result += 1
print(result - 1)
'알고리즘GOGO' 카테고리의 다른 글
[BOJ/백준] 14916 거스름돈 (Python) (0) | 2023.07.10 |
---|---|
[BOJ/백준] 10814 나이순 정렬 (Python) (0) | 2023.07.10 |
Hello World! (0) | 2022.12.11 |
[BOJ] 16173 점프왕 쩰리 (0) | 2022.11.14 |
[BOJ/백준] 9012번: 괄호 (0) | 2022.09.05 |