记录编号 128723 评测结果 AAAAA
题目名称 zht 最终得分 100
用户昵称 Gravatar农场主 是否通过 通过
代码语言 Pascal 运行时间 0.001 s
提交时间 2014-10-18 10:19:50 内存使用 49.19 MiB
显示代码纯文本
var
s,s1,s2:string;
z,y:array[1..100001] of string;
x:array[0..100000] of integer;
i,j,m,n,ans:longint;
begin
assign(input,'zht1.in');
assign(output,'zht1.out');
reset(input);
rewrite(output);
while not eof do
begin
readln(s);
for i:=1 to length(s) do if s[i]=':' then break;
for j:=1 to i-1 do s1:=s1+s[j];
for j:=i+1 to length(s) do s2:=s2+s[j];
for i:=1 to n+1 do
if  s2=y[i] then begin x[i]:=x[i]+1; break; end;
if i=n+1 then begin n:=n+1; z[n]:=s1; y[n]:=s2; end;
s1:='';
s2:='';
end;
for i:=n downto 1 do if x[ans]<=x[i] then ans:=i;
writeln(z[ans]);
writeln(y[ans]);
close(input);
close(output);
end.