Pagini recente » Cod sursa (job #168114) | Cod sursa (job #1337643) | Cod sursa (job #1517838) | Cod sursa (job #1736704) | Cod sursa (job #56948)
Cod sursa(job #56948)
{$IFDEF NORMAL}
{$I-,Q-,R-,S-}
{$ENDIF NORMAL}
{$IFDEF DEBUG}
{$I+,Q+,R+,S-}
{$ENDIF DEBUG}
{$IFDEF RELEASE}
{$I-,Q-,R-,S-}
{$ENDIF RELEASE}
const lmax=35;
cst=30;
nmax=1001;
var s:array[1..lmax,1..nmax] of integer;
a,b,c:array[1..nmax] of integer;
aux:array[1..lmax] of integer;
i,j:integer;
begin
for i:=1 to nmax do
for j:=1 to nmax do
s[i,j]:=1000;
end.