Cod sursa(job #124977)

Utilizator crisy_girlpop cristina crisy_girl Data 20 ianuarie 2008 10:42:22
Problema Stergeri Scor 0
Compilator fpc Status done
Runda preONI 2008, Runda 3, Clasele 5-8 Marime 0.41 kb
var
	n,m,x,y,i,r,rt:longint;
  k:word;
  trm:boolean;
begin
	readln(n,m,k);
  for i:= 1 to m do
  	begin
    	readln(x,y);
      r:=(y-x)+1;
      inc(rt,r);
      if (k>=x) then
      	if trm then
        	begin
      			inc(k,rt);
            trm:=false;
            rt:=0;
          end
        else
        	inc(k,r)
      else
      	if k<=x then
        	trm:=true;
    end;	
	write(k);
end.