比赛 |
普及组2016模拟练习4 |
评测结果 |
AAAAAEEEEE |
题目名称 |
查字典 |
最终得分 |
50 |
用户昵称 |
要要要不吃药 |
运行时间 |
0.380 s |
代码语言 |
C++ |
内存使用 |
1.27 MiB |
提交时间 |
2016-11-17 21:00:24 |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstring>
struct data{
int p;
char w[1001];
}word[1001];
using namespace std;
int main(){
freopen("scanword.in","r",stdin);
freopen("scanword.out","w",stdout);
int n,m;
char a[1001];
cin>>n;
for(int i=1;i<=n;i++){
scanf("%s",&word[i].w);
scanf("%d",&word[i].p);
}
cin>>m;
for(int i=1;i<=m;i++){
scanf("%s",a);
for(int j=1;j<=n;j++){
if(word[j].w[0]==a[0]){
if(strcmp(a,word[j].w)==0){
printf("%d\n",word[j].p);
break;
}else continue;
}
}
}
return 0;
}