結果
| 問題 | No.795 Restrictions!!!!!!!!!!!!!! |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-10-25 13:34:52 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
RE
不安定
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 112 bytes |
| 記録 | |
| コンパイル時間 | 774 ms |
| コンパイル使用メモリ | 21,280 KB |
| 実行使用メモリ | 20,724 KB |
| 最終ジャッジ日時 | 2026-08-22 11:30:48 |
| 合計ジャッジ時間 | 7,482 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 20 |
ソースコード
N = int(input())
M = int(input())
if N%2 == 1:
M -= 10
if M%2 == 1 or M < 0:
print('No')
else:
print('Yes')