比赛 20091111 评测结果 WWWWWWWWWWWWW
题目名称 三色二叉树 最终得分 0
用户昵称 EnAsn 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2009-11-11 11:30:13
显示代码纯文本
program ex;
type
 ss=array[0..10000]of char;
var
 f:ss;
 tot,t,temp,ans:integer;
begin
 assign(input,'trot.in');
 assign(output,'trot.out');
 reset(input);
 rewrite(output);
 while not eoln do
  begin
   inc(t);
   read(f[t]);
   if f[t]<>'0' then inc(tot);
   if f[t]='2' then inc(temp);
   if f[t]<>'2' then
   if temp<>0 then
    begin
     if temp=1 then ans:=ans+1
               else ans:=ans+temp-1;
     temp:=0;
    end;
  end;
 close(input);
 {springbrother is a true man!}
 randomize;
 t:=random(tot);
 write(t,' ',random(t));
 close(output);
end.