honey_pot
[python] 백준 10102번 본문
v = int(input())
vote = input()
A=B=0
for i in range(len(vote)):
if vote[i]=='A':
A += 1
else: B+=1
if A > B:
print("A")
elif A ==B:
print("Tie")
else: print("B")
'문제 풀이' 카테고리의 다른 글
[python] 백준 1934번 (0) | 2021.06.08 |
---|---|
[python] 백준 10886번 (0) | 2021.06.08 |
[python] 백준 5063번 (0) | 2021.06.08 |
[python] 백준 7567번 (0) | 2021.06.08 |
[python] 백준 10988번 (0) | 2021.06.08 |
Comments