PRIME1 - Prime Generator
Peter wants to generate some prime numbers for his cryptosystem. Help him! Your task is to generate all prime numbers between two given numbers!
Input
The input begins with the number t of test cases in a single line (t<=10). In each of the next t lines there are two numbers m and n (1 <= m <= n <= 1000000000, n-m<=100000) separated by a space.
Output
For every test case print all prime numbers p such that m <= p <= n, one number per line, test cases separated by an empty line.
Example
Input: 2 1 10 3 5 Output: 2 3 5 7 3 5Warning: large Input/Output data, be careful with certain languages (though most should be OK if the algorithm is well designed)
Information
After cluster change, please consider PRINT as a more challenging problem.hide comments
sam28:
2019-02-16 17:06:55
T*(n-m)*log(n) using miller-rabin gets TLE ?? lol weird Last edit: 2019-02-16 17:07:36 |
|
aksr27:
2019-02-12 18:20:08
Don't use seive algo just simply use sqrt(n) complexity prime check on each number. |
|
nikitakulkarni:
2019-02-06 05:29:37
TLE!!HOW TO OVERCOME IT???????? |
|
lnediak:
2019-01-26 14:21:23
I literally worked on my sieve, but for 10^9 it could only run in like 13 seconds, so not under 6 seconds :( I resorted to brute force style i * i < n |
|
simestest:
2019-01-26 00:12:56
Since python is a slow language, shouldn't you choose a faster one? |
|
sreejeet:
2019-01-25 10:45:54
Since python is a slow language, shouldn't it get more time for execution? |
|
rouge_raven:
2019-01-21 00:36:33
Having TLE in python should i switch the language |
|
Lokesh Reddy:
2019-01-09 16:40:19
wasted lot of time using sieve sqrt(n) solution works. |
|
harshuraj2710:
2018-12-21 04:28:16
TLE....WHAT TO DO? |
|
seantang001:
2018-12-19 05:39:10
works in terminal. i think my problem is with the io. can figure out why they format it this way.(python) |
Added by: | Adam Dzedzej |
Date: | 2004-05-01 |
Time limit: | 6s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: NODEJS PERL6 |