結果

問題 No.795 Restrictions!!!!!!!!!!!!!!
ユーザー yomo3
提出日時 2020-01-25 02:53:08
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 142 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-09-14 03:59:32
合計ジャッジ時間 1,492 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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