728x90
반응형
단순 구현 문제이다.
for _ in range(int(input())):
n = int(input())
p1 = p2 = 0
for i in range(n):
a, b = input().split()
if a == b:
continue
elif (a == 'R' and b == 'S') or (a == 'P' and b == 'R') or (a == 'S' and b == 'P'):
p1 += 1
else:
p2 += 1
if p1 > p2:
print("Player 1")
elif p1 < p2:
print("Player 2")
else:
print("TIE")
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 4635번 Speed Limit(python) (0) | 2021.02.13 |
---|---|
백준 알고리즘 4623번 Copier Reduction(python) (0) | 2021.02.13 |
백준 알고리즘 4388번 받아올림(python) (0) | 2021.02.13 |
백준 알고리즘 4101번 크냐?(python) (0) | 2021.02.13 |
백준 알고리즘 4084번 Viva la Diferencia(python) (0) | 2021.02.13 |