比赛 |
test1 |
评测结果 |
WWWWWWWWTT |
题目名称 |
查字典 |
最终得分 |
0 |
用户昵称 |
sakura |
运行时间 |
3.723 s |
代码语言 |
C++ |
内存使用 |
0.33 MiB |
提交时间 |
2017-02-28 19:43:02 |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
using namespace std;
struct zd{
string word;
int page;
};
struct zd a[20000];
string b[20000];
int main()
{
freopen("scanword.in","r",stdin);
freopen("scanword.out","w",stdout);
int n;
scanf("%d",&n);
for(int i=1;i<=n;i++) cin>>a[i].word>>a[i].page;
int m;
scanf("%d",&m);
for(int i=1;i<=m;i++)
{
cin>>b[i];
for(int j=1;j<=n;j++)
{
if(a[j].word==b[i]) cout<<a[i].page<<endl;
}
}
return 0;
}