結果

問題 No.822 Bitwise AND
ユーザー face4face4
提出日時 2019-04-26 22:26:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 805 bytes
コンパイル時間 602 ms
コンパイル使用メモリ 68,864 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-03 23:33:44
合計ジャッジ時間 1,699 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<iostream>
#include<cmath>
using namespace std;

int main(){
    int n, k;
    cin >> n >> k;

    int add = 1, val = -1;
    while(add <= k){
        if( (n&(n+add)) == n)  val = add;
        add++;
    }

    int nn = n+add;
    int a = floor(log2(nn)), b = floor(log2(n));

    if((add <= k && a >= b) || (n==0 && k!=0)){
        cout << "INF" << endl;
        return 0;
    }

    int ans = 0;
    for(int s = 0; s < (1<<18); s++){
        bool ok = true;
        int x = n;
        for(int j = 0; j < 18; j++){
            if(((s>>j)&1) == 1 && ((n>>j)&1) == 1)  ok = false;
            if((s>>j)&1)    x += 1<<j;
        }
        if(!ok) continue;
        for(int add = 0; add <= k; add++){
            if((x&(x+add)) == n)  ans++;
        }
    }

    cout << ans << endl;

    return 0;
}
0