結果

問題 No.2736 About half
ユーザー todosec
提出日時 2024-04-25 20:04:59
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 125 bytes
コンパイル時間 402 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-11-08 07:48:54
合計ジャッジ時間 1,853 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other RE * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

input().split(' ')
a = int(params[0])
b = int(params[1])
if ((a * 2) < b) or ((b * 2) < a):
	print('No')
else:
	print('Yes')
0