TOJ 534 發表於 2021-03-23 分類於 TOJ 閱讀次數: TOJ 534題目https://toj.tfcis.org/oj/pro/534/ 詢問 $a, b$ 是否同為奇數或同為偶數 Code12345678910//By Koios1143#include<iostream>using namespace std;int main(){ int a,b; cin>>a>>b; if(a%2==b%2) cout<<"yes\n"; else cout<<"no\n"; return 0;} 複雜度分析總時間複雜度為 $O(1)$