TOJ 532
題目
https://toj.tfcis.org/oj/pro/532/
輸出 $p, q$ 當中 2 的倍數以及 3 的倍數分別有幾個數字
Code
1 2 3 4 5 6 7 8 9 10 11 12 13
| #include<iostream> using namespace std; int main(){ int p,q,a=0,b=0; cin>>p>>q; if(p%2==0) a++; if(p%3==0) b++; if(q%2==0) a++; if(q%3==0) b++; cout<<a<<" "<<b<<'\n'; return 0; }
|
複雜度分析
總時間複雜度為 $O(1)$