본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 27325번 3 つの箱 (Three Boxes)

by 현장 2024. 7. 13.

-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)