結果

問題 No.822 Bitwise AND
ユーザー pekempeypekempey
提出日時 2019-04-26 21:36:59
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 763 ms / 2,000 ms
コード長 465 bytes
コンパイル時間 643 ms
コンパイル使用メモリ 70,480 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-25 18:11:43
合計ジャッジ時間 10,266 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 759 ms
5,248 KB
testcase_01 AC 16 ms
5,376 KB
testcase_02 AC 6 ms
5,376 KB
testcase_03 AC 8 ms
5,376 KB
testcase_04 AC 763 ms
5,376 KB
testcase_05 AC 372 ms
5,376 KB
testcase_06 AC 658 ms
5,376 KB
testcase_07 AC 748 ms
5,376 KB
testcase_08 AC 749 ms
5,376 KB
testcase_09 AC 648 ms
5,376 KB
testcase_10 AC 716 ms
5,376 KB
testcase_11 AC 743 ms
5,376 KB
testcase_12 AC 735 ms
5,376 KB
testcase_13 AC 6 ms
5,376 KB
testcase_14 AC 752 ms
5,376 KB
testcase_15 AC 419 ms
5,376 KB
testcase_16 AC 8 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>

using namespace std;

int f(int N, int K, int L) {
  int ans = 0;
  for (int i = 0; i <= L; i++) {
    for (int j = i; j <= i+K; j++) {
      if ((i & j) == N) {
        ans++;
      }
    }
  }
  return ans;
}

int main() {
  int N, K;
  cin >> N >> K;
  int ans = f(N, K, 1000000);
  int ans2 = f(N, K, 2000000);
  if (ans != ans2) {
    cout << "INF" << endl;
  } else {
    cout << ans << endl;
  }
}
0