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

why so many numbers we need ?
Posted by Serizna 12 Mar 2017 17:57
1000000 elements - acceptet but 100000 - not
I dont understand
stream on 256 KB - is for 64-bit numbers maximum 32768 elements
Re: why so many numbers we need ?
Posted by ToadMonster 13 Mar 2017 00:52
Have you seen sample? Have you seen any 64-bit binary input?
Input is text. 256Kb is size of input text.

The least possible size of number _in_text_form_ is 2 bytes: "1 ".
So max input size in numbers is 256K/2 = 128K numbers.
Re: why so many numbers we need ?
Posted by Serizna 13 Mar 2017 12:34
(: thank