acmsguru |
---|
Finished |
106. The equation time limit per test: 0.25 sec.
There is an equation ax + by + c = 0. Given a,b,c,x1,x2,y1,y2 you must determine, how many integer roots of this equation are satisfy to the following conditions : x1<=x<=x2, y1<=y<=y2. Integer root of this equation is a pair of integer numbers (x,y).
Input Input contains integer numbers a,b,c,x1,x2,y1,y2 delimited by spaces and line breaks. All numbers are not greater than 108 by absolute value.
Output Write answer to the output.
Sample Input 1 1 -3 0 4 0 4
Sample Output 4 |
Name |
---|