https://www.acmicpc.net/problem/1065
n = int(input())
count =0
for i in range(1, n+1):
if i < 100:
count +=1
else:
cnt = list(map(int, str(i)))
if cnt[0]-cnt[1] == cnt[1]-cnt[2]:
count += 1
print(count)
https://www.acmicpc.net/problem/1436
n = int(input())
name = 666
cnt = 0
while n:
if "666" in str(name):
cnt += 1
if cnt == n:
print(name)
break
name += 1
https://www.acmicpc.net/problem/7568
n = int(input())
slist=[]
for _ in range(n):
weight, height = map(int, input().split())
slist.append((weight,height))
for i in slist:
score = 1
for j in slist:
if i == j:
continue
if (i[0] < j[0]) and (i[1] < j[1]):
score += 1
print(score, end = " ")
브루트포스에 대하여 공부하고, 백준에서 브루트포스를 활용하여 해결하는 문제를 3문제 가량 풀었습니다. 기본기를 올리기위해 난이도가 적절한 문제들로 풀어 브루트포스에 되한 개념을 익혔습니다.
'2021하계모각코' 카테고리의 다른 글
모각코 3회차 목표 (0) | 2021.07.28 |
---|---|
모각코 2회차 결과 (0) | 2021.07.21 |
모각코 2회차 목표 (0) | 2021.07.21 |
모각코 1회차 목표 (0) | 2021.07.14 |
2021 하계 모각코 개인별 계획 (0) | 2021.06.22 |