1. 17094 17094번: Serious Problem 2의 등장횟수가 더 많다면 2를 출력하고, e의 등장횟수가 더 많다면 e를 출력한다. 등장횟수가 같다면 "yee"를 출력한다. (큰 따옴표 제외) www.acmicpc.net n = int(input()) str=input() if str.count('2') > str.count('e'): print(2) elif str.count('2') < str.count('e'): print('e') else: print('yee') 2. 15000 15000번: CAPS Earth is under attack! Messages need to be sent to the Earth Defense Force (EDF) that makes clear that ..