比赛 |
普及组2016模拟练习4 |
评测结果 |
AAAAAAAAAA |
题目名称 |
查字典 |
最终得分 |
100 |
用户昵称 |
奥、神代号~ |
运行时间 |
1.677 s |
代码语言 |
C++ |
内存使用 |
0.38 MiB |
提交时间 |
2016-11-17 20:48:13 |
显示代码纯文本
#include <fstream>
#include <string>
using namespace std;
ifstream fin("scanword.in");
ofstream fout("scanword.out");
class node
{
public:
string a,b;
int i;
}word[10010];
int m,n;
int main()
{
fin>>n;
int j;
for(j=1;j<=n;j++)
{
fin>>word[j].a>>word[j].i;
}
fin>>m;
for(j=1;j<=m;j++)
{
fin>>word[j].b;
int k=1;
while(k<=n)
{
if(word[j].b==word[k].a)
{
fout<<word[k].i<<endl;
break;
}
else
k++;
}
}
fin.close();
fout.close();
return 0;
}