結果

問題 No.795 Restrictions!!!!!!!!!!!!!!
ユーザー 👑 rin204rin204
提出日時 2023-05-22 07:00:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 202 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 66,560 KB
最終ジャッジ日時 2024-06-01 16:35:02
合計ジャッジ時間 2,231 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
66,304 KB
testcase_01 AC 46 ms
66,432 KB
testcase_02 AC 46 ms
66,176 KB
testcase_03 AC 46 ms
65,792 KB
testcase_04 AC 46 ms
66,304 KB
testcase_05 AC 46 ms
65,792 KB
testcase_06 AC 46 ms
66,560 KB
testcase_07 AC 50 ms
65,792 KB
testcase_08 AC 47 ms
66,048 KB
testcase_09 AC 46 ms
66,048 KB
testcase_10 AC 47 ms
66,176 KB
testcase_11 AC 46 ms
66,048 KB
testcase_12 AC 48 ms
66,176 KB
testcase_13 AC 46 ms
66,048 KB
testcase_14 AC 47 ms
65,792 KB
testcase_15 AC 46 ms
66,560 KB
testcase_16 AC 48 ms
65,792 KB
testcase_17 AC 47 ms
66,560 KB
testcase_18 AC 47 ms
66,176 KB
testcase_19 AC 45 ms
66,048 KB
権限があれば一括ダウンロードができます

ソースコード

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