CCC '17 J1 - Quadrant Selection

View as PDF

Submit solution


Points: 3 (partial)
Time limit: 1.0s
Memory limit: 256M

Problem type
Canadian Computing Competition: 2017 Stage 1, Junior #1

A common problem in mathematics is to determine which quadrant a given point lies in. There are four quadrants, numbered from 1 to 4, as shown in the diagram below:

For example, the point A, which is at coordinates (12,5) lies in quadrant 1 since both its x and y values are positive, and point B lies in quadrant 2 since its x value is negative and its y value is positive.

Your job is to take a point and determine the quadrant it is in. You can assume that neither of the two coordinates will be 0.

Input Specification

The first line of input contains the integer x (1000x1000;x0). The second line of input contains the integer y (1000y1000;y0).

Output Specification

Output the quadrant number (1, 2, 3 or 4) for the point (x,y).

Sample Input 1

Copy
12
5

Sample Output 1

Copy
1

Sample Input 2

Copy
9
-13

Sample Output 2

Copy
4

Comments


  • -5
    Demind_1650  commented on Oct. 9, 2024, 4:09 p.m.

    This comment is hidden due to too much negative feedback. Show it anyway.


  • 2
    popeyeschicken56  commented on Aug. 2, 2024, 5:52 p.m.

    no math required


  • 10
    Galaxy_boi_YT123  commented on Sept. 10, 2022, 11:41 p.m.

    Just set the x and y to if it was negative or positive and it should be smooth sailing from there!


  • -8
    JacobPeng  commented on Sept. 9, 2022, 12:18 a.m.

    This comment is hidden due to too much negative feedback. Show it anyway.


    • 2
      volcano  commented on Sept. 11, 2022, 2:34 p.m.

      Read the editorial if you need help.


  • -5
    IWasHangryYo  commented on Sept. 9, 2022, 12:07 a.m.

    This comment is hidden due to too much negative feedback. Show it anyway.