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 1330. Intervals

test#20
Posted by Micha 29 Oct 2005 03:08
can someone give me the test#20 cause i realy dont know where i can get WA
Re: test#20
Posted by Ulyanov Maxim (KazanSU) 29 Oct 2005 20:43
I have WA on this test too. What algorithm do u use?
Re: test#20
Posted by Ulyanov Maxim (KazanSU) 29 Oct 2005 20:53
I have just got AC. I only changed word to integer in my program.
MGL
Posted by Ulzii 14 Jan 2006 15:42
readln(n);  a[0]:=0;
for i:=1 to n do begin
  readln(m);
  a[i]:=a[i-1]+m;
end;

Edited by author 14.01.2006 15:45