結果
| 問題 | No.2736 About half |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-05-02 10:43:44 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 110 bytes |
| 記録 | |
| コンパイル時間 | 205 ms |
| コンパイル使用メモリ | 85,248 KB |
| 実行使用メモリ | 51,968 KB |
| 最終ジャッジ日時 | 2026-05-16 21:52:06 |
| 合計ジャッジ時間 | 1,960 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 10 WA * 5 |
ソースコード
# input
A,B = map(int,input().split())
# output
if A < 2*B and B < 2*A:
print('Yes')
else:
print('No')