[백준] #10102 개표 python
2023. 2. 4. 06:00
https://www.acmicpc.net/problem/10102
📕 설명 📕
python의 Counter library를 이용하여 A와 B의 개수를 세었다.
🧑🏻💻 나의 풀이 🧑🏻💻
from collections import Counter
V = int(input())
S = Counter(input())
if S['A'] > S['B']:
print('A')
elif S['A'] < S['B']:
print('B')
else:
print("Tie")
'Programming > Algorithm' 카테고리의 다른 글
[백준] #5988 홀수일까 짝수일까 python (0) | 2023.02.05 |
---|---|
[백준] #9506 약수들의 합 python (0) | 2023.02.05 |
[백준] #10988 팰린드롬인지 확인하기 python (0) | 2023.02.03 |
[백준] #7567 그릇 python (0) | 2023.02.02 |
[백준] #1789 수들의 합 python (0) | 2023.02.01 |