记录编号 48335 评测结果 AAAAAAAAAA
题目名称 漂亮字串 最终得分 100
用户昵称 Gravatarjoeyolui 是否通过 通过
代码语言 Pascal 运行时间 0.019 s
提交时间 2012-11-05 15:53:39 内存使用 0.27 MiB
显示代码纯文本
uses math;
var
n,i:integer;
co,mo,cx,mx:int64;
begin
assign(input,'bs.in'); assign(output,'bs.out');
reset(input); rewrite(output);
while not(eof) do
 begin
 readln(co,cx,mo,mx);
 if ((mo=0) and (mx=0)) or ((co=0) and (cx=0)) then writeln('0') else
 if (co=0) or (mo=0) then writeln(min(cx,mx)) else
 if (cx=0) or (mx=0) then writeln(min(co,mo)) else
 if cx=co then writeln(cx+co) else
 if cx>co then writeln(min(mx*(co+1)+co,cx+co)) else
 if cx<co then writeln(min(mo*(cx+1)+cx,cx+co));
 end;
end.