結果

問題 No.2533 A⇒B問題
ユーザー Feishi LiFeishi Li
提出日時 2023-11-30 15:21:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 707 bytes
コンパイル時間 4,397 ms
コンパイル使用メモリ 261,208 KB
実行使用メモリ 6,676 KB
最終ジャッジ日時 2023-11-30 15:21:45
合計ジャッジ時間 5,857 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,676 KB
testcase_01 AC 2 ms
6,676 KB
testcase_02 AC 2 ms
6,676 KB
testcase_03 AC 2 ms
6,676 KB
testcase_04 AC 2 ms
6,676 KB
testcase_05 AC 2 ms
6,676 KB
testcase_06 AC 2 ms
6,676 KB
testcase_07 AC 1 ms
6,676 KB
testcase_08 AC 2 ms
6,676 KB
testcase_09 AC 2 ms
6,676 KB
testcase_10 AC 2 ms
6,676 KB
testcase_11 AC 2 ms
6,676 KB
testcase_12 AC 2 ms
6,676 KB
testcase_13 AC 2 ms
6,676 KB
testcase_14 AC 2 ms
6,676 KB
testcase_15 AC 2 ms
6,676 KB
testcase_16 AC 2 ms
6,676 KB
testcase_17 AC 2 ms
6,676 KB
testcase_18 AC 2 ms
6,676 KB
testcase_19 AC 2 ms
6,676 KB
testcase_20 AC 1 ms
6,676 KB
testcase_21 AC 2 ms
6,676 KB
testcase_22 AC 2 ms
6,676 KB
testcase_23 AC 2 ms
6,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <bits/extc++.h>
using i64 = int64_t;
void solve()
{
    i64 a, b;
    std::cin >> a >> b;
    auto calc = [&](i64 x)
    {
        std::vector<int> v(32);
        for (int i = 31; i >= 0; i--)
        {
            if (x >> i & 1)
            {
                v[i] = 1;
            }
        }
        return v;
    };
    auto va = calc(a);
    auto vb = calc(b);
    bool ok = true;
    for (int i = 31; i >= 0; i--)
    {
        if (va[i] == 1 && vb[i] == 0)
        {
            ok = false;
            break;
        }
    }
    std::cout << (ok ? "Yes" : "No") << '\n';
}
int main()
{
    std::cin.tie(nullptr)->sync_with_stdio(false);
    solve();
    return 0;
}
0