結果

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

ソースコード

diff #

line = input()
params = split(' ')
a = params[0]
b = params[1]
if a > b:
	a, b = (b, a)
if (a * 2) < b:
	print('No')
else:
	print('Yes')
0