[백준] #10102 개표 python

2023. 2. 4. 06:00

https://www.acmicpc.net/problem/10102

 

10102번: 개표

입력은 총 두 줄로 이루어져 있다. 첫째 줄에는 심사위원의 수 V (1 ≤  V ≤  15)가 주어지고, 둘째 줄에는 각 심사위원이 누구에게 투표했는지가 주어진다. A와 B는 각각 그 참가자를 나타낸다.

www.acmicpc.net

 

📕 설명 📕

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")

BELATED ARTICLES

more