結果
| 問題 | No.795 Restrictions!!!!!!!!!!!!!! |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-03-12 23:25:33 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
RE
不安定
|
| 実行時間 | - |
| コード長 | 150 bytes |
| 記録 | |
| コンパイル時間 | 284 ms |
| コンパイル使用メモリ | 21,336 KB |
| 実行使用メモリ | 20,656 KB |
| 最終ジャッジ日時 | 2026-09-06 07:53:05 |
| 合計ジャッジ時間 | 6,220 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 20 |
ソースコード
N_M = input().split()
N = int((N_M[0])[-1])
M = int((N_M[1])[-1])
if M % 10 == 0 or (N % 2 == 0 and M % 2 == 0):
print("YES")
else:
print("NO")