結果

問題 No.822 Bitwise AND
ユーザー kyort0nkyort0n
提出日時 2019-04-26 22:07:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,457 ms / 2,000 ms
コード長 926 bytes
コンパイル時間 1,461 ms
コンパイル使用メモリ 165,772 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-25 18:13:38
合計ジャッジ時間 15,851 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,446 ms
5,248 KB
testcase_01 AC 35 ms
5,376 KB
testcase_02 AC 13 ms
5,376 KB
testcase_03 AC 5 ms
5,376 KB
testcase_04 AC 1,457 ms
5,376 KB
testcase_05 AC 705 ms
5,376 KB
testcase_06 AC 1,256 ms
5,376 KB
testcase_07 AC 1,449 ms
5,376 KB
testcase_08 AC 1,452 ms
5,376 KB
testcase_09 AC 1,238 ms
5,376 KB
testcase_10 AC 288 ms
5,376 KB
testcase_11 AC 304 ms
5,376 KB
testcase_12 AC 1,406 ms
5,376 KB
testcase_13 AC 14 ms
5,376 KB
testcase_14 AC 308 ms
5,376 KB
testcase_15 AC 811 ms
5,376 KB
testcase_16 AC 18 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<ll, ll> l_l;
typedef pair<int, int> i_i;

#define EPS (1e-7)
#define INF (1e9)
#define PI (acos(-1))
//const ll mod = 1000000007;

int main() {
    //cout.precision(10);
    cin.tie(0);
    ios::sync_with_stdio(false);
    int N, K;
    cin >> N >> K;
    ll ans = 0;
    int val = 1;
    /*
    for(int i = 1; i <= 20; i++) {
        if(K >= val && val > N) {
            cout << "INF" << endl;
            return 0;
        }
        val *= 2;
    }
    */
    for(int y = 0; y <= 5000000; y++) {
        for(int k = 0; k <= K; k++) {
            int x = y - k;
            if(x < 0) continue;
            if((x&y) == N) {
                ans++;
                if(y >= 1000000) {
                    cout << "INF" << endl;
                    return 0;
                }
            }
        }
    }
    cout << ans << endl;
    return 0;
}
0