結果

問題 No.822 Bitwise AND
ユーザー kimiyukikimiyuki
提出日時 2019-04-26 21:52:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 884 bytes
コンパイル時間 1,991 ms
コンパイル使用メモリ 198,508 KB
実行使用メモリ 11,912 KB
最終ジャッジ日時 2023-08-16 14:00:46
合計ジャッジ時間 8,494 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
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, n) for (int i = 0; (i) < (int)(n); ++ (i))
#define REP3(i, m, n) for (int i = (m); (i) < (int)(n); ++ (i))
#define REP_R(i, n) for (int i = (int)(n) - 1; (i) >= 0; -- (i))
#define REP3R(i, m, n) for (int i = (int)(n) - 1; (i) >= (int)(m); -- (i))
#define ALL(x) begin(x), end(x)
using ll = long long;
using namespace std;

ll solve(ll n, ll k) {
    ll cnt = 0;
    REP (x, 8 * n + 3) {
        REP3 (y, x, x + k + 1) {
            cnt += ((x & y) == n);
        }
    }
    ll cnt1 = 0;
    REP (x, 10000000) {
        REP3 (y, x, x + k + 1) {
            cnt1 += ((x & y) == n);
        }
    }
    if (cnt1 > cnt) return LLONG_MAX;
    return cnt;
}

int main() {
    ll n, k; cin >> n >> k;
    ll cnt = solve(n, k);
    if (cnt == LLONG_MAX) {
        cout << "INF" << endl;
    } else {
        cout << cnt << endl;
    }
    return 0;
}
0