2025/01/21 3

[C++][백준 9375] 패션왕 신해빈

https://www.acmicpc.net/problem/9375풀이가지고 있는 각 의상의 종류로 나올 수 있는 경우의 수를 구하는 문제다map을 이용해 각 의상별로 몇 벌을 가지고 있는지 체크하고, 경우의 수를 구해주면 된다  제출 코드#include #include using namespace std;int main(){ ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); int t, n; string input; cin >> t; while(t--) { map m; cin >> n; while(n--) { cin >> input >> input..