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 1001. Reverse Root

about memory(C : access violation)
Posted by AlbertLetry 26 Aug 2018 21:01
I use
type[256*1024]
int main(){ ... }

run successfully .

but use struct as

int main()
{ type[256*1024] }

get error :  access violation

and use

type[256*1024 / sizeof(type)]

get error : access violation

what is the "A size of the input stream does not exceed 256 KB." means!