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

[백준/파이썬] 24080번 복잡한 문자열 (Complex String)

by 현장 2023. 6. 25.

-Code

n = int(input())
s = set(input())
words = "ABCED"
cnt = 0

for w in s:
    if w in words:
        cnt += 1

print("Yes" if cnt >= 3 else "No")