记录编号 |
283158 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[郑州101中学] 月考 |
最终得分 |
100 |
用户昵称 |
Go灬Fire |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.400 s |
提交时间 |
2016-07-14 10:25:56 |
内存使用 |
0.31 MiB |
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cstring>
#include<map>
#include<iostream>
using namespace std;
const int maxn=101000;
map<string,int> q;
int main(){
freopen("mtest.in","r",stdin);
freopen("mtest.out","w",stdout);
int n,m,tot=0;string s;
cin>>n;
for(int i=1;i<=n;i++){
cin>>s;
q[s]=1;
}
cin>>m;
for(int i=1;i<=m;i++){
cin>>s;
if(q[s]==1)tot++;
}
printf("%d\n",tot);
}