记录编号 215555 评测结果 AAAAAAAAAA
题目名称 [郑州101中学] 月考 最终得分 100
用户昵称 GravatarO(1) 是否通过 通过
代码语言 C++ 运行时间 0.183 s
提交时间 2015-12-22 18:42:25 内存使用 0.32 MiB
显示代码纯文本
#include<iostream>
#include<set>
#include<fstream>
#include<string>
using namespace std;
int main()
{
	ofstream fout("mtest.out");
	ifstream fin ("mtest.in");
	set<string> a;
	//set<string>::iterator it;
	int n,m;
	string b;
	fin>>n;
	for(int i=0;i<n;i++)
	{
		fin>>b;
		a.insert(b);
	}
	int num=0;
	fin>>m;
	for(int i=0;i<m;i++)
	{
		fin>>b;
        if(a.count(b)==1)
        num++;
	}
	fout<<num<<endl;
	return 0;
}