結果

問題 No.2736 About half
ユーザー 𖧱𖦸𖥩𖥣𖥩𖥣𖧱𖦸𖥩𖥣𖥩𖥣
提出日時 2024-04-30 11:53:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 83 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 53,364 KB
最終ジャッジ日時 2024-04-30 11:54:05
合計ジャッジ時間 1,706 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,216 KB
testcase_01 AC 37 ms
52,332 KB
testcase_02 AC 36 ms
52,988 KB
testcase_03 AC 36 ms
52,644 KB
testcase_04 AC 37 ms
52,032 KB
testcase_05 AC 40 ms
52,692 KB
testcase_06 AC 37 ms
52,236 KB
testcase_07 AC 47 ms
52,212 KB
testcase_08 AC 37 ms
52,736 KB
testcase_09 AC 37 ms
53,084 KB
testcase_10 AC 37 ms
52,404 KB
testcase_11 AC 37 ms
51,960 KB
testcase_12 AC 36 ms
51,676 KB
testcase_13 AC 37 ms
53,364 KB
testcase_14 AC 36 ms
53,196 KB
testcase_15 AC 37 ms
52,028 KB
testcase_16 AC 36 ms
52,108 KB
testcase_17 AC 36 ms
52,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b = map(int,input().split())
if 0.5 <= a/b <= 2:
	print("Yes")
else:
	print("No")
0