记录编号 |
379095 |
评测结果 |
AAAAAAAAAA |
题目名称 |
查字典 |
最终得分 |
100 |
用户昵称 |
TARDIS |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.066 s |
提交时间 |
2017-03-05 18:52:09 |
内存使用 |
0.31 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cmath>
#include<map>
#include<algorithm>
#include<cstdlib>
using namespace std;
map <string,int> ma;
int n,m,temp,x;
char c[1000];
inline void readln(){
freopen("scanword.in","r",stdin);
freopen("scanword.out","w",stdout);
scanf("%d",&n);
for(int i=1;i<=n;i++){
scanf("%s %d",c,&temp);
ma[string(c)]=temp;
//printf("%d",ma[string(c)]);
}
scanf("%d",&m);
}
inline void work(){
for (int i=1;i<=m;i++){
scanf("%s",c);
printf("%d\n",ma[string(c)]);
}
}
int main(){
readln();
work();
fclose(stdin);fclose(stdout);
return 0;
}