본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 27522번 카트라이더: 드리프트

by 현장 2023. 6. 11.

-Code

points = [10, 8, 6, 5, 4, 3, 2, 1, 0]
times = sorted([list(input().split()) for _ in range(8)])
b, r = 0, 0

for i in range(8):
    if times[i][1] == 'B':
        b += points[i]
    else:
        r += points[i]
print("Red" if r > b else "Blue")