結果

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

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int A,B;
    cin>>A>>B;
    for(int i=0;i<30;i++)if(A&(1<<i))
    {
        if((B&(1<<i))==0)
        {
            cout<<"No\n";
            return 0;
        }
    }
    cout<<"Yes\n";
}
0