문제풀이/백준(Boj) 문제풀이

[백준][정수론 및 조합론] 9375. 패션왕 신해빈 (파이썬/Python)

얄루몬 2021. 9. 26. 00:33

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)