PRINT - Prime Intervals

In this problem you have to print all primes from given interval.

Input

t - the number of test cases, then t lines follows. [t <= 150]
On each line are written two integers L and U separated by a blank. L - lower bound of interval, U - upper bound of interval. [2 <= L < U <= 2147483647] [U-L <= 1000000].

Output

For each test case output must contain all primes from interval [L; U] in increasing order.

Example

Input:

2
2 10
3 7

Output:

2
3
5
7
3
5
7

Added by:Roman Sol
Date:2005-03-28
Time limit:1.223s
Source limit:15000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ERL JS-RHINO NODEJS PERL6 VB.NET
Resource:ZCon

hide comments
2017-10-09 17:04:07
solved in 0.2second
2017-09-22 21:02:06
Anyone managed to run this with Java?
2017-06-25 04:37:31
Solved it in python! :D Execution time: 0.61 sec :D :D

=(Francky)=> Congrats, you keep #1 using Py3, I keep #1 using Py2.

Last edit: 2018-04-08 18:32:31
2017-06-18 12:46:21
Same as PRIME1 , just used fast i/o ;)
2017-06-03 08:07:20
For avoiding TLE
cout->printf
cin->scanf
2017-02-13 16:21:39 hacker_sk
AC in 0.18 sec ... mine 15th position .. LOL just use fast i/o ans optimized segmented sieve :D
2016-12-06 06:50:11
implement segmented sieve
2016-12-03 10:59:32 satyam
use scanf and printf ...do not use cin cout
2016-11-04 16:03:13
If I use a sieve here, does it mean that it has to contain 2147483647 numbers in it because that is the upper bound for input?
2016-08-30 12:51:05
I tried it in java. It successfully gives output on ideone but gives time limit exceeded error when I submit it.

Last edit: 2016-08-30 12:51:19
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.