結果
| 問題 | No.795 Restrictions!!!!!!!!!!!!!! |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-10-25 13:34:52 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 112 bytes |
| 記録 | |
| コンパイル時間 | 726 ms |
| コンパイル使用メモリ | 20,700 KB |
| 実行使用メモリ | 20,696 KB |
| 最終ジャッジ日時 | 2026-04-03 05:58:04 |
| 合計ジャッジ時間 | 6,422 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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')