結果
| 問題 | No.795 Restrictions!!!!!!!!!!!!!! |
| コンテスト | |
| ユーザー |
Schnee
|
| 提出日時 | 2021-12-16 15:50:59 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
RE
不安定
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 134 bytes |
| 記録 | |
| コンパイル時間 | 304 ms |
| コンパイル使用メモリ | 21,412 KB |
| 実行使用メモリ | 20,800 KB |
| 最終ジャッジ日時 | 2026-08-26 04:31:46 |
| 合計ジャッジ時間 | 6,610 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 20 |
ソースコード
n,m=map(int,open(0).read().split())
if n%2==0:
print("Yes"if m%2==0 else"No")
else:
print("Yes"if m%2==0 and m/n>=1 else "No")
Schnee