結果
| 問題 | No.795 Restrictions!!!!!!!!!!!!!! |
| コンテスト | |
| ユーザー |
Liny52551272
|
| 提出日時 | 2019-11-12 16:34:47 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
RE
不安定
|
| 実行時間 | - |
| コード長 | 251 bytes |
| 記録 | |
| コンパイル時間 | 289 ms |
| コンパイル使用メモリ | 21,412 KB |
| 実行使用メモリ | 20,604 KB |
| 最終ジャッジ日時 | 2026-08-30 18:48:49 |
| 合計ジャッジ時間 | 6,137 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 20 |
ソースコード
N = int(input().strip())
M = int(input().strip())
a = N * 10 + M
if a % 2 == 1:
print('No')
else:
b = a // 2
b = b - min(N * 10, (b // 10) * 10)
print('b:{}'.format(b))
if b < M:
print('Yes')
else:
print('No')
Liny52551272