結果
| 問題 | 
                            No.2736 About half
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2024-04-23 07:29:47 | 
| 言語 | C++14  (gcc 13.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 2 ms / 2,000 ms | 
| コード長 | 280 bytes | 
| コンパイル時間 | 1,629 ms | 
| コンパイル使用メモリ | 166,772 KB | 
| 実行使用メモリ | 6,820 KB | 
| 最終ジャッジ日時 | 2024-10-15 07:18:55 | 
| 合計ジャッジ時間 | 2,421 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge2 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 15 | 
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main() {
  int A, B;
  cin >> A >> B;
  bool complain = false;
  if (A > B * 2)
    complain = true;
  if (B > A * 2)
    complain = true;
  if (complain)
    cout << "No" << endl;
  else
    cout << "Yes" << endl;
  return 0;
}