結果

問題 No.2022 Antilogarithm
ユーザー harurun
提出日時 2021-09-20 10:36:43
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 235 bytes
コンパイル時間 942 ms
コンパイル使用メモリ 86,308 KB
最終ジャッジ日時 2025-01-24 15:56:42
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 38 WA * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <math.h>
using namespace std;
using ll=long long;

int main(){
  ll A,B;
  cin>>A>>B;
  if(2*log2(A)<log2(B*B)){
    cout<<"Yes"<<endl;
  }else{
    cout<<"No"<<endl;
  }
  return 0;
}
0