結果

問題 No.822 Bitwise AND
ユーザー kimiyukikimiyuki
提出日時 2019-04-26 21:54:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,740 ms / 2,000 ms
コード長 883 bytes
コンパイル時間 1,984 ms
コンパイル使用メモリ 200,156 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-25 18:13:18
合計ジャッジ時間 20,821 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,560 ms
6,816 KB
testcase_01 AC 28 ms
6,816 KB
testcase_02 AC 9 ms
6,944 KB
testcase_03 AC 13 ms
6,944 KB
testcase_04 AC 1,663 ms
6,940 KB
testcase_05 AC 772 ms
6,940 KB
testcase_06 AC 1,393 ms
6,944 KB
testcase_07 AC 1,740 ms
6,944 KB
testcase_08 AC 1,496 ms
6,944 KB
testcase_09 AC 1,277 ms
6,940 KB
testcase_10 AC 1,372 ms
6,944 KB
testcase_11 AC 1,441 ms
6,944 KB
testcase_12 AC 1,390 ms
6,944 KB
testcase_13 AC 9 ms
6,940 KB
testcase_14 AC 1,445 ms
6,944 KB
testcase_15 AC 926 ms
6,944 KB
testcase_16 AC 13 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

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, 5000000) {
        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