TOJ 534

TOJ 534

題目

https://toj.tfcis.org/oj/pro/534/

詢問 $a, b$ 是否同為奇數或同為偶數

Code

1
2
3
4
5
6
7
8
9
10
//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)$