Kattis - Quadrant Selection

Kattis - Quadrant Selection

題目

https://hackmd.io/@sa072686/Kattis_quadrant

https://open.kattis.com/problems/quadrant

輸入一個 $x, y$ 座標,輸出位在於第幾象限,保證 $x, y$ 不會有等於 0 的情況

Code

1
2
3
4
5
6
7
8
9
10
11
12
//By Koios1143
#include<iostream>
using namespace std;
int main(){
int x,y;
cin>>x>>y;
if(x>0 && y>0) cout<<"1\n";
else if(x<0 && y>0) cout<<"2\n";
else if(x<0 && y<0) cout<<"3\n";
else cout<<"4\n";
return 0;
}

複雜度分析

總時間複雜度為 $O(1)$