比赛 20091110 评测结果 AAAAAAAATT
题目名称 查字典 最终得分 80
用户昵称 reamb 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2009-11-10 10:09:18
显示代码纯文本
program zuobi;
var
  n,m,i,j:longint;
  a:array[1..10000]of string[100];
  yeshu:array[1..10000]of longint;
  s:string;
begin
  assign (input,'scanword.in');
  reset (input);
  assign (output,'scanword.out');
  rewrite (output);
  readln (n);
  for i:=1 to n do
  begin
    readln (a[i]);
    readln (yeshu[i])
  end;
  readln (m);
  for i:=1 to m do
  begin
    readln (s);
    for j:=1 to n do
      if s=a[j] then
      begin
        writeln (yeshu[j]);
        break
      end
  end;
  close (input);
  close (output)
end.