RT。
#include <bits/stdc++.h> using namespace std; set<string> a; int n; int main(){ cin >> n; while (n--){ string temp; cin >> temp; a.insert(temp); } cout << 52 - a.size(); return 0; }