結果

問題 No.2022 Antilogarithm
ユーザー Tna
提出日時 2022-08-10 14:00:53
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 161 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-09-21 00:31:06
合計ジャッジ時間 3,615 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 36 WA * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

A, B = [int(x) for x in input().split()]
left = 2 * math.log2(A)
right = math.log2(B ** 2)

if left < right:
    print("Yes")
else:
    print("No")
0