Kattis - Quadrant Selection 發表於 2021-03-23 分類於 Kattis 閱讀次數: Kattis - Quadrant Selection題目https://hackmd.io/@sa072686/Kattis_quadrant https://open.kattis.com/problems/quadrant 輸入一個 $x, y$ 座標,輸出位在於第幾象限,保證 $x, y$ 不會有等於 0 的情況 Code123456789101112//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)$