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

[백준/파이썬] 11269번 Cryptographer’s Conundrum

by 현장 2023. 6. 12.

-Code

word = "PER"
s = input()
res = 0

for i in range(len(s)):
    if s[i] != word[i % 3]:
        res += 1
print(res)