728x90
https://www.acmicpc.net/problem/1436
단순하게 완전탐색으로 풀면 되는 문제
메모리제한이 넉넉해서 666~ 300만까지의 리스트를 만들어서 666이 포함되어있는지 탐색해주었다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import sys
input = sys.stdin.readline
arr = [str(i) for i in range(666, 3000000)]
n = int(input())
cnt = 0
for a in arr:
if "666" in a:
cnt += 1
if cnt == n:
print(a)
break
|
cs |
728x90
'PS > 백준' 카테고리의 다른 글
[백준 2609번] 최대공약수와 최소공배수 (파이썬/python) (0) | 2021.06.14 |
---|---|
[백준 1037번] 약수 (파이썬/python) (0) | 2021.06.14 |
[백준 2869번 ] 달팽이는 올라가고싶다 (파이썬/python) (0) | 2021.06.14 |
[백준 4948번 ] 베르트랑 공준 (파이썬/python) (0) | 2021.06.14 |
[백준 1011번 ] Fly me to the Alpha Centauri (파이썬/python) (0) | 2021.06.14 |