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

[백준/파이썬] 32401번 ANA는 회문이야

by 현장 2024. 11. 6.

-Code

n = int(input())
s = input()
n_cnt, res = 0, 0

for i in range(n):
    if s[i] == "A":
        for j in range(i + 1, n):
            if s[j] == "A":
                if n_cnt == 1:
                    res += 1
                break
            elif s[j] == "N":
                n_cnt += 1
    n_cnt = 0
print(res)