結果

問題 No.795 Restrictions!!!!!!!!!!!!!!
ユーザー Schnee
提出日時 2021-12-16 15:50:59
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 134 bytes
コンパイル時間 455 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-09-13 12:35:33
合計ジャッジ時間 1,853 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other RE * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,open(0).read().split())
if n%2==0:
    print("Yes"if m%2==0 else"No")
else:
    print("Yes"if m%2==0 and m/n>=1 else "No")
0