結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー alpha_virginisalpha_virginis
提出日時 2015-04-17 00:17:23
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 751 bytes
コンパイル時間 1,380 ms
コンパイル使用メモリ 146,536 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-17 16:24:52
合計ジャッジ時間 4,572 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 WA -
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 WA -
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 47 ms
4,380 KB
testcase_09 AC 11 ms
4,376 KB
testcase_10 AC 36 ms
4,380 KB
testcase_11 AC 26 ms
4,376 KB
testcase_12 AC 54 ms
4,376 KB
testcase_13 AC 58 ms
4,380 KB
testcase_14 AC 33 ms
4,376 KB
testcase_15 AC 62 ms
4,376 KB
testcase_16 AC 52 ms
4,384 KB
testcase_17 AC 56 ms
4,376 KB
testcase_18 AC 2 ms
4,380 KB
testcase_19 AC 2 ms
4,376 KB
testcase_20 AC 237 ms
4,376 KB
testcase_21 AC 64 ms
4,376 KB
testcase_22 AC 64 ms
4,380 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 62 ms
4,376 KB
testcase_34 AC 62 ms
4,380 KB
testcase_35 AC 64 ms
4,380 KB
testcase_36 AC 64 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

int main() {
  
  int N;
  std::vector<long> v;
  long temp;
  long mask, mask1, mask2;

  long count;
  long ans;
  bool b;
  
  std::cin >> N;
  for(int i = 0; i < N; ++i) {
    std::cin >> temp;
    v.push_back(temp);
  }

  count = 0;
  for(int i = 0; i < 64; ++i) {
    for(int j = i+1; j < 64; ++j) {
      mask = (1ULL << i) | (1ULL << j);
      mask1 = (1ULL << i);
      mask2 = (1ULL << j);
      b = true;
      for(int k = 0; k < N; ++k) {
	if( (v[k] & mask) == mask1 || (v[k] & mask) == mask2 ) {
	  b = false;
	  break;
	}
      }
      if( b ) {
	count++;
      }
    }
  }

  ans = 1;
  for(int i = 1; i < 64 - (int)sqrt(2*count); ++i) {
    ans *= 2;
  }

  std::cout << ans << std::endl;
  
  return 0;
}


0