結果

問題 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,946 ms
コンパイル使用メモリ 201,264 KB
実行使用メモリ 16,848 KB
最終ジャッジ日時 2024-11-25 03:21:22
合計ジャッジ時間 38,288 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 55 ms
13,632 KB
testcase_02 AC 16 ms
10,016 KB
testcase_03 AC 23 ms
13,636 KB
testcase_04 TLE -
testcase_05 AC 1,551 ms
13,636 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 15 ms
6,820 KB
testcase_14 TLE -
testcase_15 AC 1,766 ms
6,820 KB
testcase_16 AC 24 ms
10,020 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, 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