比赛 |
普及组2016模拟练习4 |
评测结果 |
AAAAAAAATT |
题目名称 |
查字典 |
最终得分 |
80 |
用户昵称 |
瑆の時間~無盡輪迴·林蔭 |
运行时间 |
2.763 s |
代码语言 |
C++ |
内存使用 |
0.31 MiB |
提交时间 |
2016-11-17 20:29:10 |
显示代码纯文本
#include<iostream>
#include<cstdio>
using namespace std;
class TCLKS{
public:
string word;
int ye;
};
TCLKS zidian[10000];
int main()
{
freopen("scanword.in","r",stdin);
freopen("scanword.out","w",stdout);
int k;
cin>>k;
for(int i=0;i<=k-1;i++)
{
cin>>zidian[i].word;
cin>>zidian[i].ye;
}
int n;
cin>>n;
string q[10000];
for(int j=0;j<=n-1;j++)
{
cin>>q[j];
}
for(int w=0;w<=n-1;w++)
{
for(int e=0;e<=k-1;e++)
{
if(zidian[e].word==q[w])
cout<<zidian[e].ye<<endl;
}
}
return 0;
}