結果

問題 No.795 Restrictions!!!!!!!!!!!!!!
ユーザー rin204
提出日時 2023-05-22 07:00:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 202 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 66,432 KB
最終ジャッジ日時 2024-12-22 02:56:27
合計ジャッジ時間 2,690 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys


sys.set_int_max_str_digits(10 ** 9)


n = int(input())
m = int(input())
if m % 2 == 1:
    print("No")
elif m >= 10:
    print("Yes")
elif n % 2 == 1:
    print("No")
else:
    print("Yes")
0