반응형
코드
# 영화감독 숌 분류
# 1안 매우 비효율적
n = int(input())
s = '666'
arr = []
for i in range(3000000):
if s in str(i): # if str(i).find(s) != -1:
arr.append(i)
print(arr[n-1])
# 2안
n = int(input())
num = 666
cnt = 0
while True:
if '666' in str(num):
cnt += 1
if cnt == n:
print(num)
break
num += 1
'코딩테스트 > 파이썬' 카테고리의 다른 글
[백준] 수 정렬하기 2 2751 (파이썬) (0) | 2021.03.12 |
---|---|
[백준] 카드2 2164 (파이썬) (0) | 2021.03.12 |
[백준] 그룹단어 체커 1316 (파이썬) (0) | 2021.03.12 |
[백준] 가장 긴 증가하는 부분 수열 11053 (파이썬) (0) | 2021.03.12 |
[백준] 숫자 카드 10815 (파이썬) (0) | 2021.03.12 |