-Code
from sys import stdin
input = stdin.readline
n = int(input())
m_total, j_total = 0, 0
m_cnt, j_cnt = 0, 0
m_res, j_res = 0, 0
for _ in range(n):
a, b = input().split()
b = int(b)
if a == "M":
m_total += b
m_cnt += 1
else:
j_total += b
j_cnt += 1
if m_cnt != 0:
m_res = m_total / m_cnt
if j_cnt != 0:
j_res = j_total / j_cnt
if m_res < j_res:
print('J')
elif m_res > j_res:
print('M')
else:
print('V')
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 32651번 인간은 무엇인가 (0) | 2024.11.12 |
---|---|
[백준/파이썬] 32642번 당구 좀 치자 제발 (0) | 2024.11.11 |
[백준/파이썬] 32529번 래환이의 여자친구 사귀기 대작전 (1) | 2024.11.09 |
[백준/파이썬] 24303번 ПРЪЧКИ (0) | 2024.11.08 |
[백준/파이썬] 28640번 Домино (0) | 2024.11.07 |