Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- yolov5
- 파이썬 #백준 #BFS
- S3
- 솝트 후기
- MongoDB
- CRUD
- AWS
- 솝트
- 절차지향
- 카카오
- jwt
- jQuery
- 사물인식
- 백준
- 인공지능
- 멋쟁이사자처럼
- 피로그래밍
- nodejs
- Python
- 면접전형
- objectdetection
- spring-boot
- 프로그래머스
- Java
- 페이지네이션
- 파이썬
- 멋사
- 합격후기
- EC2
- 서류전형
Archives
- Today
- Total
찔끔찔끔씩😎
[백준] 1436번 영화감독 숌- python 본문
728x90
https://www.acmicpc.net/problem/1436
문제
666이 들어가는 수 중 n번째인 수를 출력하자.
해결
666을 시작으로 1씩 증가시키며 666이 들어가는 숫자를 찾는다. (완전탐색)
코드
n = int(input())
ans = 0
num = 666
while(True):
if '666' in str(num) :
ans+=1
if ans == n:
print(num)
break
num += 1
'Algorithm > 백준' 카테고리의 다른 글
[백준 | BFS] 18405번 경쟁적 전염- python (0) | 2022.02.25 |
---|---|
[백준 | BFS] 18352번 특정 거리의 도시 찾기- python (0) | 2022.02.25 |
[백준] 1018번 체스판 다시 칠하기- python (0) | 2021.11.13 |
[백준] 7568번 덩치- python (0) | 2021.11.13 |
[백준] 2231번 분해합- python (0) | 2021.11.11 |
Comments