結果

問題 No.795 Restrictions!!!!!!!!!!!!!!
ユーザー yomo3
提出日時 2020-01-25 02:54:01
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 142 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-09-14 03:59:33
合計ジャッジ時間 1,436 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other RE * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
m=int(input())

yes = 0
if n%2 and m>=10 and m%2==0:
    yes=1
elif n%2==0 and m%2==0:
    yes=1

print('Yes' if yes else 'No')
0