Given two integers and , output all the prime numbers between and inclusive, one per line.
and will be positive integers less than or equal to .
The difference between and will be less than or equal to .
Sample Input
5 20
Sample Output
5
7
11
13
17
19
Comments
Could someone please help with my submission (MLEing last two test cases). https://dmoj.ca/submission/6648597
I've tried breaking it up into smaller sized segments, and my array for primes should be about 31622 items long max. Is this too much? Thanks very much.
tle 😭
no more tle!
I'm getting a segmentation fault on the last test case. Can someone have a look at my code please?
You're running out of memory. You allocate an array that's M long, which will be <= 1,000,000,001. Assuming the largest possible value, that's 1,000,000,001 bools * 1 bytes per bool which equals 1000Mb. Obviously the problem limit is 32Mb, so it fails.