백준 문제 링크
당신은 운명을 믿나요?
- 점괘 S를 돌면서 KOREA의 첫번째 원소와 동일한지,
YONSEI의 첫번째 원소와 동일한지 검증해가며 KOREA나 YONSEI 중 먼저 원소가 0개가 된 대학을 출력한다
u = list(input())
kor = ['K','O','R','E','A']
yon = ['Y','O','N','S','E','I']
from collections import deque
queue = deque(u)
while queue:
x = queue.popleft()
if x == kor[0]:
kor.pop(0)
if len(kor) == 0:
print('KOREA')
break
if x == yon[0]:
yon.pop(0)
if len(yon) == 0:
print('YONSEI')
break