結果

問題 No.2533 A⇒B問題
ユーザー ochiaigawa
提出日時 2023-11-11 10:09:59
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 397 bytes
コンパイル時間 2,185 ms
コンパイル使用メモリ 193,720 KB
最終ジャッジ日時 2025-02-17 21:33:00
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
using namespace std;
int main() {
  cin.tie(0); cout.tie(0);
  ios::sync_with_stdio(false);
  int A, B;
  cin >> A >> B;
  bool fn = true;
  for(int i = 0; i < 30; i++) {
    if(A >> i & 1) {
      if(!(B >> i & 1)) {
        fn = false;
      }
    }
  }
  cout << (fn ? "Yes\n" : "No\n");
  return 0; 
}
0