比赛 |
20101101 |
评测结果 |
WWWWWWWWWW |
题目名称 |
漂亮字串 |
最终得分 |
0 |
用户昵称 |
亟隐 |
运行时间 |
0.055 s |
代码语言 |
Pascal |
内存使用 |
0.15 MiB |
提交时间 |
2012-11-05 10:54:01 |
显示代码纯文本
var x,y,l,r,z:int64;
procedure init;
begin
end;
function try(x,y,l,r:int64):int64;
begin
if l=0 then exit(r);
if r=0 then exit(l); z:=y+1;
if z*l>=x then
begin
if z>=x then z:=x-1;
try:=x+z*r;
end else try:=y+z*l;
end;
function max(x,y:int64):int64;
begin
if x>y then exit(x) else exit(y);
end;
procedure work;
begin
while not eof do
begin
readln(x,y,l,r);
writeln(max(try(x,y,l,r),try(y,x,r,l)));
end;
end;
begin
assign(input,'bs.in');reset(input);
assign(output,'bs.out');rewrite(output);
init;
work;
close(input); close(output);
end.