比赛 暑假培训B班二测 评测结果 AAAAAAAAAA
题目名称 牛棚回声 最终得分 100
用户昵称 hjr1995 运行时间 0.002 s
代码语言 Pascal 内存使用 0.17 MiB
提交时间 2012-07-22 11:10:49
显示代码纯文本
var
s1,s2,x1,x2:string;
i,max:longint;
begin
  assign(input,'echo.in');reset(input);
  assign(output,'echo.out');rewrite(output);
  readln(s1);
  readln(s2);
  max:=0;
  for i:=1 to length(s1) do
    begin
    x1:=copy(s1,1,i);
    x2:=copy(s2,length(s2)-i+1,i);
    if x1=x2 then
      if i>max then max:=i;
    end;
  for i:=1 to length(s2) do
    begin
    x2:=copy(s2,1,i);
    x1:=copy(s1,length(s1)-i+1,i);
    if x1=x2 then
      if i>max then max:=i;
    end;
  writeln(max);
  close(input);close(output);
end.