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
5
Warning: 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
Dr. Code: 2013-03-13 22:12:29

I think the time limit is not 6s or they are not testing n-m<=100000 and putting m=1 and n=1000000000 ..

Diogo Soares [UFAM]: 2013-03-13 22:12:29

@darky1 yeah! Sieve is good enough..

Darky: 2013-03-13 22:12:29

Is sieve of eratosthenes good enuf?

Gaurav Singh: 2013-03-13 22:12:29

Hi,
After submitting the code i got RESULT as WRONG ANSWER; TIME 0.01 MEM 2760
How can i check where it went wrong?

Last edit: 2012-04-08 09:49:18
nikhil kumar singh: 2013-03-13 22:12:29

wats the solution to get rid of time limit exceeding problem..??

Vladimir Milenkovic: 2013-03-13 22:12:29

MY programe works fine, time limit is 6s, in worst test case it works for 4.84 s on ideone.com , and it's always Time limit Exceeded :( Why??

Sardar Khan: 2013-03-13 22:12:29

how to solve sigsev error?

sudarshan: 2013-03-13 22:12:29

i m new here.. i think the problem can be done by using sieve erosthanes .. starting with 2, we check every prime ,and separate the composite ones, for each test case, we can check in btw.. i know it sounds obvious, but could you help me, in finding the soln..

strings: 2013-03-13 22:12:29

what is output if input is
34 36
or the likes... i print one blank line for such test cases and rest of the code runs well on ideone @1.33 sec and even on my comp...

numerix: 2013-03-13 22:12:29

@Julian Leyh: There are already 20 AC Ada solutions. You have to think about another approach ...


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