比赛 普及组2016模拟练习4 评测结果 WWWWWWWWTT
题目名称 查字典 最终得分 0
用户昵称 运行时间 3.681 s
代码语言 Pascal 内存使用 5.09 MiB
提交时间 2016-11-17 21:08:05
显示代码纯文本
var
y,z:array[0..10001] of string;
a,b,c,m,n:longint;
x:array[0..10001] of longint;
begin
assign(input,'scanword.in');
reset(input);
assign(output,'scanword.out');
rewrite(output);


readln(n);
for a:=1 to n do
begin
readln(y[a]);
readln(x[a]);
end;
readln(m);
for a:=1 to m do
readln(z[a]);
for a:=1 to n do
for b:=1 to n do
if y[a]=z[b] then writeln(x[a]);


close(input);
close(output);





end.