ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Discussion of Problem 1068. Sum

Что не так? Помогите пожалуйста.
Posted by awicone 16 Oct 2016 01:21
var i,n,q,h:integer;
k:real;
begin
q:=0;
read(n);
h:= 10000;
if (n <= h) and (n >= -h) then begin
if n>0 then begin
k:= ((1+n)/2)*n;
writeln(k);
end;
if n=0 then begin
k:=0+1;
writeln(k);
end;

if n<0 then begin
for i:= 1 downto n do
inc(q);
k:= ((1+n)/2)*q;
writeln (k);
end;
end;
end.
Re: Что не так? Помогите пожалуйста.
Posted by Kovalyshyn Artur 21 Oct 2016 16:59
формула для від'ємних чисел не підходить там така має бути(по моєму): ((1 + a) / 2) * ((a - 1) / ((b - 1) - 1) + 1)

Edited by author 21.10.2016 16:59