记录编号 123965 评测结果 AAAAAAAAAA
题目名称 查字典 最终得分 100
用户昵称 GravatarBokjan 是否通过 通过
代码语言 C++ 运行时间 0.119 s
提交时间 2014-10-01 20:59:03 内存使用 0.32 MiB
显示代码纯文本
#include <fstream>
#include <string>
#include <map>
std::map<std::string, int> map;
namespace std{
	ifstream fin("scanword.in");
	ofstream fout("scanword.out");
}
int main(void)
{
	
	int n;
	std::fin >> n;
	while(n--){
		int page;
		std::string str;
		std::fin >> str >> page;
		map.insert(std::make_pair(str, page));
	}
	std::fin >> n;
	while(n--){
		std::string str;
		std::fin >> str;
		std::fout << map[str] << std::endl;
	}
	std::fin.close();
	std::fout.close();
	return 0;
}