ODDDIV - Odd Numbers of Divisors

Given a positive odd integer K and two positive integers low and high, determine how many integers between low and high contain exactly K divisors.

Input

The first line of the input contains a positive integer C (0 < C < 100,000), the number of test cases to follow. Each case consists of a line containing three integers: K, low, and high (1 < K < 10000, 0 < low ≤ high < 10^10). K will always be an odd integer.

Output

Output for each case consists of one line: the number of integers between low and high, inclusive, that contain exactly K divisors.

Example

Input:
3
3 2 49
9 1 100
5 55 235

Output:
4
2
1

Added by:eleusive
Date:2008-10-04
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ERL JS-RHINO NODEJS PERL6 VB.NET
Resource:Al-Khawarizm 2008 - Set by eleusive

hide comments
2016-05-27 13:53:22 SUBHAM SANGHAI
Very nice problem.. seems easy,but much of optimisation required..binary search helped
2016-05-12 19:40:50 xMAn
only perfct squares have odd no. of divisors ..
2016-03-28 06:03:17 Jamil Siam
awesome problem!
AC at 0.09s after lots of TLE :D
2015-12-14 17:58:16 Govind Lahoti
lot of optimizations needed. Learnt a lot. Nice problem :)
2014-12-26 13:27:00 ISHANI
My First Vector problem
2014-06-04 21:13:34 Rishav Goyal
beautiful Problem.
2014-06-02 04:01:03 abdelkarim
فى شوال :D
2014-04-26 18:48:20 Avaneesh Rastogi
Nice problem. worth the time spent.
2013-12-21 20:50:28 Deepak gupta
www.spoj.com/problems/NDIV
similar problem :P

Last edit: 2013-12-21 20:53:01
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.