记录编号 |
344502 |
评测结果 |
AAAAAAAAAA |
题目名称 |
查字典 |
最终得分 |
100 |
用户昵称 |
Zwoi_John Price |
是否通过 |
通过 |
代码语言 |
C |
运行时间 |
0.755 s |
提交时间 |
2016-11-10 10:44:58 |
内存使用 |
2.50 MiB |
显示代码纯文本
#include<stdio.h>
#include<string.h>
struct DATA
{
char w[110];
int p;
}word[20000];
int main()
{
int n,m,i,j;
char a[110];
freopen("scanword.in","r",stdin);
freopen("scanword.out","w",stdout);
scanf("%d",&n);
for (i=1;i<=n;i++)
{
scanf("%s",&word[i].w);
scanf("%d",&word[i].p);
}
scanf("%d",&m);
for (i=1;i<=m;i++)
{
scanf("%s",a);
for (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;
}
}
}
fclose(stdin);
fclose(stdout);
return 0;
}