일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Zip
- 동적 계획법
- 다익스트라
- python
- programmers
- 위클리 챌린지
- 추석맞이 코딩챌린지
- KAKAO BLIND RECRUITMENT
- 파이썬
- heapq
- 프로그래머스
- 수학
- BFS
- 이분탐색
- lambda
- 카카오
- divmod
- 재귀함수
- backjoon
- 자바
- java
- Combinations
- dfs
- Re
- 정규식
- Set
- 백준
- 그리디
- DateTime
- 정렬
Archives
- Today
- Total
목록2810번 (1)
상상쓰
[백준] 컵홀더
https://www.acmicpc.net/problem/2810 2810번: 컵홀더 첫째 줄에 좌석의 수 N이 주어진다. (1 ≤ N ≤ 50) 둘째 줄에는 좌석의 정보가 주어진다. www.acmicpc.net 문제를 잘 읽어보면 커플이 문제다. import sys N = int(sys.stdin.readline()) S = sys.stdin.readline().strip() n = 0 for i in S: if i == 'L': n += 1 answer = N if n == 0 else N - (n // 2) + 1 print(answer)
Coding Test
2021. 7. 14. 17:25