일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- heapq
- 추석맞이 코딩챌린지
- 위클리 챌린지
- 동적 계획법
- 정렬
- Zip
- 파이썬
- KAKAO BLIND RECRUITMENT
- 자바
- DateTime
- 백준
- BFS
- python
- 카카오
- programmers
- lambda
- java
- 다익스트라
- 정규식
- Re
- Set
- backjoon
- 그리디
- 프로그래머스
- 수학
- divmod
- 재귀함수
- dfs
- Combinations
- 이분탐색
Archives
- Today
- Total
상상쓰
[백준] 컵홀더 본문
https://www.acmicpc.net/problem/2810
문제를 잘 읽어보면 커플이 문제다.
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' 카테고리의 다른 글
[프로그래머스] 표 편집 (0) | 2021.07.16 |
---|---|
[백준] 가운데를 말해요 (0) | 2021.07.15 |
[백준] 8진수 2진수 (0) | 2021.07.13 |
[프로그래머스] [1차] 추석 트래픽 (0) | 2021.07.13 |
[백준] 크게 만들기 (0) | 2021.07.12 |
Comments