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