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

I had WA14 but...
Posted by MOPDOBOPOT (USU) 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! :)
Re: I had WA14 but...
Posted by faisalnir 24 Oct 2011 20:20
how did u change it?plz write the code
Re: I had WA14 but...
Posted by morbidel 24 Oct 2011 20:26
a:array[-1000..1000]of int64;
=>
a:array[-1000..1000]of extended;
:)
Re: I had WA14 but...
Posted by SandFox1993 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?
Re: I had WA14 but...
Posted by Andrew Sboev [USU] 14 Nov 2012 23:31
double will be enough :)