일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- lambda
- 프로그래머스
- 재귀함수
- python
- 정규식
- Zip
- heapq
- 동적 계획법
- 자바
- 다익스트라
- 이분탐색
- backjoon
- 위클리 챌린지
- 백준
- 그리디
- BFS
- DateTime
- 추석맞이 코딩챌린지
- Re
- programmers
- divmod
- java
- Set
- 수학
- KAKAO BLIND RECRUITMENT
- 카카오
- dfs
- 파이썬
- Combinations
- 정렬
Archives
- Today
- Total
목록파이선 (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