import sys
from collections import Counter
t = int(input())
for _ in range(t):
n = int(input())
s = [] # 종류 담을 리스트
for i in range(n):
name, clothtype = input().split()
s.append(clothtype)
num = 1
result = Counter(s)
for j in result:
num *= result[j] +1
print(num-1)
'문제풀이 > 백준(Boj) 문제풀이' 카테고리의 다른 글
[백준][정수론 및 조합론] 1676. 팩토리얼 0의 개수 (파이썬/Python) (0) | 2021.09.28 |
---|---|
[백준][이분 탐색] 1920. 수 찾기 (파이썬/Python) (0) | 2021.09.27 |
[백준][정수론 및 조합론] 1010. 다리 놓기 (파이썬/Python) (0) | 2021.09.25 |
[백준][정수론 및 조합론] 11051. 이항 계수 2(파이썬/Python) (0) | 2021.09.24 |
[백준][정수론 및 조합론] 11050. 이항 계수 1 (파이썬/Python) (0) | 2021.09.24 |