记录编号 20449 评测结果 AAAAAAAAAA
题目名称 NBA总冠军 最终得分 100
用户昵称 Gravatar1102 是否通过 通过
代码语言 Pascal 运行时间 0.184 s
提交时间 2010-10-26 08:46:46 内存使用 0.15 MiB
显示代码纯文本
program xxxx;
var n,i,j,x,y,code,l:longint;
    s,s1,str:string;
    a:array[1900..2050] of string;
    f:array[1900..2050] of integer;
begin
  assign(input,'nba.in');
  reset(input);
  assign(output,'nba.out');
  rewrite(output);
  readln(n);
  for i:=1900 to 2050 do
    f[i]:=0;
  for i:=1 to n do
    begin
      readln(str);
      l:=length(str)-5;
      s:=copy(str,1,l);
      s1:=copy(str,l+2,4);
      val(s1,y,code);
      if f[y]=0 then
        begin
          a[y]:=s;
          f[y]:=1;
        end;
    end;
  for i:=1900 to 2050 do
    if f[i]<>0 then
      writeln(i,' ',a[i]);
  close(input);
  close(output);
end.