AC

 •  26天前


include

include

using namespace std;

int main() {

int n;
cin >> n;
set<string>k;
for (int i = 0; i < n; ++i) {
	string s;
	cin >> s;
	k.insert(s);
}
cout << 52 - k.size();
return 0;

}


评论:

请先登录,才能进行评论