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

Common Board

SOMETHING IS WRONG WITH THE MEMORY SIZER!!!
Posted by Algorist 7 Sep 2001 23:48
Here are all the variables I use in my program
Var A,B : Byte;
    I,N : Longint;
    SUM : Array[1..1000000]of Byte;
That is 10^6 bytes+18 bytes= 1000018<1024000
And the limit is 1000K. Why do I get "Memory Limit
Exceeded"?????? Is the limit 10^6 Bytes?
i think ...
Posted by Dinh Quang Hiep (mg9h@yahoo.com) 8 Sep 2001 01:25
> Here are all the variables I use in my program
> Var A,B : Byte;
>     I,N : Longint;
>     SUM : Array[1..1000000]of Byte;
> That is 10^6 bytes+18 bytes= 1000018<1024000
> And the limit is 1000K. Why do I get "Memory Limit
> Exceeded"?????? Is the limit 10^6 Bytes?
Yes, the limit is 10^6 bytes exactl;y.
Posted by Marat Bakirov 8 Sep 2001 01:44
Re: Yes, the limit is 10^6 bytes exactl;y.
Posted by Algorist 8 Sep 2001 10:16
Well, then it wasn't very smart of you to write "1000K"
because I've submitted this problem at least 30 times or
maybe 50. So, is the limit going to be corrected, or is the
page with the problem going to be corrected?