結果

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

ソースコード

diff #

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

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