比赛 20091102 评测结果 WWWWWWWWWW
题目名称 溶液模拟器 最终得分 0
用户昵称 ybh 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2009-11-02 10:11:04
显示代码纯文本
program simulator;
var
  a:array[0..10001] of longint;
  b:array[0..10001] of real;
  v,c,top,n,i:longint;
  ch:char;
begin
  assign(input,'simulator.in');
  reset(input);
  assign(output,'simulator.out');
  rewrite(output);
  readln(v,c);
  top:=0;
  a[0]:=v;
  b[0]:=c;
  readln(n);
  for i:=1 to n do
  begin
    read(ch);
    if ch='p' then
    begin
      readln(v,c);
      inc(top);
      a[top]:=a[top-1]+v;
      b[top]:=(a[top-1]*b[top-1]*0.01+v*c*0.01)/a[top]*100;
      writeln(a[top],' ',b[top]:0:5)
    end;
    if ch='z' then
    begin
      readln;
      if top>=1
        then dec(top);
      writeln(a[top],' ',b[top]:0:5);
    end
  end;
  close(input);
  close(output)
end.