일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 동적 계획법
- DateTime
- BFS
- Set
- 수학
- 재귀함수
- 파이썬
- python
- 이분탐색
- 자바
- 정규식
- backjoon
- Zip
- 다익스트라
- programmers
- KAKAO BLIND RECRUITMENT
- Re
- 백준
- dfs
- heapq
- Combinations
- java
- lambda
- 카카오
- 위클리 챌린지
- divmod
- 그리디
- 프로그래머스
- 정렬
- 추석맞이 코딩챌린지
Archives
- Today
- Total
상상쓰
[프로그래머스] 예상 대진표 본문
https://programmers.co.kr/learn/courses/30/lessons/12985
토너먼트이므로 n 과 상관없이 a 와 b 는 만난다. 1부터 두 명씩 그룹을 만들고 a 와 b 가 같은 그룹일 때 answer 을 return 해주면 된다.
def solution(n, a, b):
answer = 0
while True:
answer += 1
a = int(a / 2 + 0.5)
b = int(b / 2 + 0.5)
if a == b:
break
return answer
print(solution(8, 4, 7)) # 3
'Coding Test' 카테고리의 다른 글
[프로그래머스] 블록 이동하기 (0) | 2021.06.13 |
---|---|
[백준] 수 묶기 (0) | 2021.06.11 |
[백준] 캠핑 (0) | 2021.06.10 |
[프로그래머스] 외벽 점검 (0) | 2021.06.09 |
[백준] 카드 정렬하기 (0) | 2021.06.09 |
Comments