比赛 20101025 评测结果 AAAAAAAAAA
题目名称 NBA总冠军 最终得分 100
用户昵称 苏轼 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2010-10-25 19:39:54
显示代码纯文本
program nba(input,output);

var
  n,i,y:integer;
  str:string;
  ch:char;
  s:array[1946..2010]of string;

begin
  assign(input,'nba.in');
  reset(input);
  assign(output,'nba.out');
  rewrite(output);

  readln(n);

  for i:=1 to n do
  begin
    str:='';
    read(ch);
    while not(ch in ['0'..'9'])  do
    begin
      str:=str+ch;
      read(ch);
    end;
    readln(y);

    if y>900 then
      y:=y+1000
    else
      y:=y+2000;

    s[y]:=copy(str,1,length(str)-1);
  end;

  for i:=1946 to 2010 do
    if s[i]<>'' then
      writeln(i,' ',s[i]);

  close(input);
  close(output);
end.