跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F1771. Square Equation Roots

    ID: 1777 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 8 上传者: 标签>数学挑战难度共享题库Codeforces英文题面题目来源题面语言

Square Equation Roots

题目描述

E. Square Equation Roots
time limit per test
5 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

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≤bn, 1≤cm. Help Petya find that number.

Input

The single line contains two integers n and m. (1≤n,m≤5000000).

Output

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

Examples
Input
3 3
Output
12
Input
1 2
Output
1
Note

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 root

In 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

b=2, c=2: x2+4x+2=0; The roots are

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

b=3, c=2: x2+6x+2=0; The roots are

b=3, c=3: x2+6x+3=0; The roots are Overall there are 13 roots and as the root -1 is repeated twice, that means there are 12 different roots.


题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 1323 题。保留原作者与原赛事署名。