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 1133. Fibonacci Sequence

MOPDOBOPOT (USU) I had WA14 but... [4] // Problem 1133. Fibonacci Sequence 6 Oct 2011 21:42
When I used longint I got WA11, but I changed it into int64 and got WA14.
Then, I changed int64 into extended and got AC! :)
faisalnir Re: I had WA14 but... [3] // Problem 1133. Fibonacci Sequence 24 Oct 2011 20:20
how did u change it?plz write the code
morbidel Re: I had WA14 but... [2] // Problem 1133. Fibonacci Sequence 24 Oct 2011 20:26
a:array[-1000..1000]of int64;
=>
a:array[-1000..1000]of extended;
:)
SandFox1993 Re: I had WA14 but... [1] // Problem 1133. Fibonacci Sequence 14 Nov 2012 22:14
can you help me for this, how can I extend in c++ long long (int 64) to a bigger type?
Andrew Sboev [USU] Re: I had WA14 but... // Problem 1133. Fibonacci Sequence 14 Nov 2012 23:31
double will be enough :)