比赛 |
test1 |
评测结果 |
AAAAAAAATT |
题目名称 |
查字典 |
最终得分 |
80 |
用户昵称 |
liuyu |
运行时间 |
3.697 s |
代码语言 |
C++ |
内存使用 |
0.31 MiB |
提交时间 |
2017-02-28 20:55:48 |
显示代码纯文本
#include<cstdio>
#include<iostream>
#include<algorithm>
#include<cstring>
using namespace std;
int maxx=10010;
struct aa{
string word;
int page;
};
struct bb{
string word;
int page;
};
int main()
{
freopen("scanword.in","r",stdin);
freopen("scanword.out","w",stdout);
aa a1[maxx];
bb b1[maxx];
int n,m;
scanf("%d",&n);
for(int i=0;i<n;i++)
{
cin>>a1[i].word>>a1[i].page;
}
scanf("%d",&m);
for(int i=0;i<m;i++)
{
cin>>b1[i].word;
}
for(int i=0;i<m;i++)
for(int j=0;j<n;j++)
{
if(b1[i].word==a1[j].word)cout<<a1[j].page<<endl;
continue;
}
return 0;
}