結果

問題 No.822 Bitwise AND
ユーザー treeonetreeone
提出日時 2019-04-26 21:41:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 719 bytes
コンパイル時間 3,308 ms
コンパイル使用メモリ 201,196 KB
実行使用メモリ 10,012 KB
最終ジャッジ日時 2024-05-03 21:47:00
合計ジャッジ時間 5,641 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 TLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, a, n) for(int i = a; i < n; i++)
#define int long long
using namespace std;
typedef pair<int, int> P;
const int mod = 1000000007;
const int INF = 1e18;

signed main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int n, k;
    cin >> n >> k;
    int msbn = 64 - __builtin_clzll(n);
    int ans = 0;
    for(int i = 0; i < (1LL << msbn); i++){
        for(int j = i; j <= i + k; j++){
            int msbj = 64 - __builtin_clzll(j);
            if((i & j) == n){
                ans++;
                if(msbj > msbn){
                    cout << "INF" << endl;
                    return 0;
                }
            }
        }
    }
    cout << ans << endl;
}
0