結果

問題 No.795 Restrictions!!!!!!!!!!!!!!
ユーザー 👑 kmjpkmjp
提出日時 2023-08-23 23:52:25
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 95 bytes
コンパイル時間 780 ms
コンパイル使用メモリ 77,588 KB
実行使用メモリ 77,884 KB
最終ジャッジ日時 2023-08-23 23:52:50
合計ジャッジ時間 3,899 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
77,420 KB
testcase_01 AC 96 ms
77,596 KB
testcase_02 AC 96 ms
77,884 KB
testcase_03 AC 100 ms
77,800 KB
testcase_04 AC 100 ms
77,632 KB
testcase_05 AC 98 ms
77,784 KB
testcase_06 AC 103 ms
77,640 KB
testcase_07 AC 100 ms
77,428 KB
testcase_08 AC 98 ms
77,460 KB
testcase_09 AC 99 ms
77,592 KB
testcase_10 AC 97 ms
77,768 KB
testcase_11 AC 98 ms
77,832 KB
testcase_12 AC 96 ms
77,632 KB
testcase_13 AC 100 ms
77,840 KB
testcase_14 AC 97 ms
77,344 KB
testcase_15 AC 96 ms
77,776 KB
testcase_16 AC 106 ms
77,516 KB
testcase_17 AC 96 ms
77,524 KB
testcase_18 AC 95 ms
77,424 KB
testcase_19 AC 99 ms
77,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if N%2:
	M-=10
	
if M%2 or M<0:
	print("No")
else:
	print("Yes")
0