记录编号 |
450566 |
评测结果 |
AAAAAAAAAA |
题目名称 |
查字典 |
最终得分 |
100 |
用户昵称 |
JustWB |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.419 s |
提交时间 |
2017-09-16 15:29:18 |
内存使用 |
0.31 MiB |
显示代码纯文本
#include<map>
#include<string>
#include<cstdio>
#include<iostream>
using namespace std;
int n,m,t;
string temp;
map<string,int>test;
int main()
{
freopen("scanword.in","r",stdin);
freopen("scanword.out","w",stdout);
scanf("%d",&n);
for(int i=1;i<=n;i++)
{
cin>>temp>>t;
test[temp]=t;
}
scanf("%d",&m);
for(int i=1;i<=m;i++)
{
cin>>temp;
cout<<test[temp]<<endl;
}
return 0;
}