-Code
n = int(input())
s = input()
ball = 1
res = 0
for el in s:
if el == 'L':
ball -= 1 if ball > 1 else 0
else:
ball += 1 if ball < 3 else 0
if ball >= 3:
res += 1
print(res)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 32046번 Snacks within 300 Yen (0) | 2024.07.15 |
---|---|
[백준/파이썬] 32025번 체육은 수학과목 입니다 (0) | 2024.07.14 |
[백준/파이썬] 12085번 Moist (Small1) (0) | 2024.07.12 |
[백준/파이썬] 14969번 Taro's Shopping (0) | 2024.07.11 |
[백준/파이썬] 27194번 Meeting Near the Fountain (0) | 2024.07.10 |