比赛 20101101 评测结果 WWWWWWWWWW
题目名称 漂亮字串 最终得分 0
用户昵称 maxiem 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2010-11-01 20:51:26
显示代码纯文本
program bs;
var
  ans,count,max,counto,countx,maxo,maxx:int64;
begin
  assign (input,'bs.in');
  reset (input);
  assign (output,'bs.out');
  rewrite (output);
  while not(eof(input)) do begin
    readln (counto,countx,maxo,maxx);ans:=0;
	if counto<countx then count:=counto else if counto=countx then count:=counto-1 else count:=countx;
	if maxo<maxx then ans:=count*maxo+(count+1)*maxx else ans:=count*maxx+(count+1)*maxo;
	writeln (ans);
  end;
  close (input);
  close (output);
end.