2918.Square Equation Roots

Time Limit: 1s Memory Limit: 256MB

A schoolboy Petya studies square equations. The equations that are included in the school curriculum, usually look simple: x2+2bx+c=0 where b, c are natural numbers.
Petya noticed that some equations have two real roots, some of them have only one root and some equations don't have real roots at all. Moreover it turned out that several different square equations can have a common root.Petya is interested in how many different real roots have all the equations of the type described above for all the possible pairs of numbers b and c such that 1 \le b \le n, 1 \le c \le m. Help Petya find that number.

Input Format(From the terminal/stdin)

Input The single line contains two integers n and m. (1 \le n,m \le 5000000).

Output Format(To the terminal/stdout)

Output Print a single number which is the number of real roots of the described set of equations.

Sample Input 1

Copy
3 3
 · \n

Sample Output 1

Copy
12
  \n

Sample Input 2

Copy
1 2
 · \n

Sample Output 2

Copy
1
 \n

Hints

In the second test from the statement the following equations are analysed: b=1, c=1: x2+2x+1=0; The root is x=-1 b=1, c=2: x2+2x+2=0; No roots Overall there's one rootIn the second test the following equations are analysed: b=1, c=1: x2+2x+1=0; The root is x=-1 b=1, c=2: x2+2x+2=0; No roots b=1, c=3: x2+2x+3=0; No roots b=2, c=1: x2+4x+1=0; The roots are 2918_1.png b=2, c=2: x2+4x+2=0; The roots are 2918_2.png b=2, c=3: x2+4x+3=0; The roots are x1=-3,x2=-1 b=3, c=1: x2+6x+1=0; The roots are 2918_3.png b=3, c=2: x2+6x+2=0; The roots are 2918_4.png b=3, c=3: x2+6x+3=0; The roots are 2918_5.png Overall there are 13 roots and as the root -1 is repeated twice, that means there are 12 different roots.

Submit

请先 登录

© 2025 FAQs