比赛 20090923练习赛 评测结果 WWWWWWWWWA
题目名称 背诵单词 最终得分 10
用户昵称 ReimBurSe. 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2009-09-23 22:02:45
显示代码纯文本
Program letter;

Var
s:array [0..100] of string;
i,j,n:longint;

Begin
assign(input,'letter.in');
assign(output,'letter.out');
reset(input);
rewrite(output);
readln(n);
for i:=1 to n do readln(s[i]);
for i:=1 to n-1 do begin
 for j:=i+1 to n do begin
  if s[j,1]=s[i,1] then begin
   if length(s[i])>length(s[j]) then begin
    s[0]:=s[i];
    s[i]:=s[j];
    s[j]:=s[0];
   end;
  end
  else begin
   if ord(s[i,1])>ord(s[j,1]) then begin
    s[0]:=s[i];
    s[i]:=s[j];
    s[j]:=s[0];
   end;
  end;
 end;
end;
for i:=1 to n do writeln(s[i]);
close(input);
close(output);
End.