반응형
백준: https://www.acmicpc.net/problem/1436
예외처리 포함한 brute force 구현 (첫째 줄에 N이 주어진다. N은 10,000보다 작거나 같은 자연수이다.)
N = int(input())
hell = 666
cnt = 0
while True:
if N <= 10000:
if '666' in str(hell):
cnt += 1
if cnt == N:
break
hell += 1
else:
print("error over input_num")
break
print(hell)
Brute force:완전탐색 구현
N = int(input())
hell = 666
cnt = 0
while N:
if '666' in str(hell):
N -= 1
hell += 1
print(hell-1)
반응형
'프로그래밍 > 알고리즘(Algorithm)' 카테고리의 다른 글
[Algorithm] 백준 - 한수 (Brute force: 완전 탐색) (0) | 2024.01.16 |
---|---|
[Algorithm] 백준 - 덩치 (Brute force: 완전 탐색) (1) | 2024.01.13 |
[백준] 1032번 명령 프롬프트 - 파이썬 (0) | 2023.12.18 |
[Algorithm] 백준 - 일곱 난쟁이 (Brute force: 완전 탐색) (0) | 2023.08.08 |