比赛 |
普及组2016模拟练习4 |
评测结果 |
AAAAAAAAAA |
题目名称 |
查字典 |
最终得分 |
100 |
用户昵称 |
Zwoi_John Price |
运行时间 |
0.505 s |
代码语言 |
C |
内存使用 |
2.04 MiB |
提交时间 |
2016-11-17 19:02:15 |
显示代码纯文本
#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;
}