Create 1079.pas

From https://vijos.org/p/1248/solution
pull/12/head^2
Kirigaya Kazuto 2016-05-01 10:43:30 -05:00
parent 970cbad7b1
commit 9dd64189e3
1 changed files with 13 additions and 0 deletions

13
QUSTOJ/1079.pas Normal file
View File

@ -0,0 +1,13 @@
var
k,ld,cbs,cd,md,i,x1,x2,x3,x4:integer;
sj:real;
begin
read(k,x1,x2,x3,x4);
sj:=99999999;
for ld:=0 to 10 do
for cbs:=0 to 10 do
for cd:=0 to 10 do
for md:=0 to 10 do
if (ld+cbs+cd+md=k) and (((20-ld*2)*x1+(100-cbs*7)*x2*2/((10+md*1)*x4)+(100-cd*9)*x3/((10+md*1)*x4))<sj) then sj:=(20-ld*2)*x1+(100-cbs*7)*x2*2/((10+md*1)*x4)+(100-cd*9)*x3/((10+md*1)*x4);
write(sj:0:3);
end.