結果

問題 No.795 Restrictions!!!!!!!!!!!!!!
ユーザー otsuneko
提出日時 2021-05-07 19:29:34
言語 PyPy3
(7.3.15)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 191 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 65,152 KB
最終ジャッジ日時 2024-09-15 07:37:25
合計ジャッジ時間 2,152 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other RE * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
M = int(input())

if N%2:
    if not M%10:
        print("Yes")
    else:
        print("No")
else:
    if M%2:
        print("No")
    else:
        print("Yes")
0