728x90
import sys
n = int(sys.stdin.readline())
decision_list = sys.stdin.readline().rstrip()
a_cnt, b_cnt = 0, 0
for i in decision_list:
if i == 'A':
a_cnt += 1
elif i == 'B':
b_cnt += 1
print('A' if a_cnt > b_cnt else 'B' if b_cnt > a_cnt else 'Tie')
728x90
'[Coding Test] > [백준]' 카테고리의 다른 글
[백준] 10987 파이썬(python) : 모음의 개수 (0) | 2022.08.31 |
---|---|
[백준] 25305 파이썬(python) : 커트라인 (0) | 2022.08.30 |
[백준] 1759 파이썬(python) : 암호 만들기 (0) | 2022.08.28 |
[백준] 2580 파이썬(python) : 스토쿠 - (★) (0) | 2022.08.27 |
[백준] 9663 파이썬(python) : N-Queen - (★) (0) | 2022.08.27 |