记录编号 |
112610 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[郑州101中学] 月考 |
最终得分 |
100 |
用户昵称 |
ztx |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.180 s |
提交时间 |
2014-07-16 16:45:14 |
内存使用 |
0.31 MiB |
显示代码纯文本
#include <fstream>
#include <set>
using namespace std;
set<string>S;
ifstream cin ("mtest.in" );
ofstream cout("mtest.out");
int main() {
int n , ans = 0 ; std::string s;
cin >> n ;
while (n -- ) {
cin >> s ; S.insert(s) ;
}
cin >> n ;
while (n -- ) {
cin >> s ;
if (S.count(s)) ans ++ ;
}
cout << ans << endl ;
return 0 ;
}
/*#include <iostream>
#include <cstdio>
#include <map>
using namespace std;
map<string,bool>m;
int main() {
freopen("mtest.in" ,"r",stdin );
freopen("mtest.out","w",stdout);
int n , ans = 0 ; string s;
scanf("%d", &n );
while (n -- ) {
cin >> s ; m[s] = true ;
}
scanf("%d", &n );
while (n -- ) {
cin >> s; if (m[s]) ans ++ ;
}
printf("%d\n", ans );
return 0 ;
}*/