結果

問題 No.2533 A⇒B問題
ユーザー ochiaigawaochiaigawa
提出日時 2023-11-11 10:09:59
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 397 bytes
コンパイル時間 1,782 ms
コンパイル使用メモリ 203,024 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-26 02:41:51
合計ジャッジ時間 2,494 ms
ジャッジサーバーID
(参考情報)
judge3 / 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