結果

問題 No.2736 About half
ユーザー Taka
提出日時 2024-05-02 10:43:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 110 bytes
コンパイル時間 465 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 52,096 KB
最終ジャッジ日時 2024-11-22 23:49:49
合計ジャッジ時間 1,924 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 10 WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

# input
A,B = map(int,input().split())
# output
if A < 2*B and B < 2*A:
    print('Yes')
else:
    print('No')
0