比赛 test1 评测结果 AAAAAAAATT
题目名称 查字典 最终得分 80
用户昵称 Hyoi_iostream 运行时间 3.116 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2017-02-28 20:58:02
显示代码纯文本
#include <iostream>
#include <cstdio>
#include <algorithm>
#include <cmath>
#include <string>
using namespace std;
struct word1{
	string s;
	int page;
}word[10010];
int main()
{
	freopen("scanword.in","r",stdin);
	freopen("scanword.out","w",stdout);
	int n,m,a[10010]={0},y=1;
	string s2;
	cin>>n;
	for(int i=1;i<=n;i++)
	{
		cin>>word[i].s>>word[i].page;
	}
	cin>>m;
	for(int i=1;i<=m;i++)
	{
		cin>>s2;
		for(int j=1;j<=n;j++)
		{
			if(word[j].s==s2)
				{a[y]=word[j].page;
			y++;
			break;}
		}
	}
	for(int i=1;i<=y-1;i++)
		cout<<a[i]<<endl;
	return 0;
}