結果

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

ソースコード

diff #

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

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