結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー imulanimulan
提出日時 2016-02-08 23:27:07
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 655 bytes
コンパイル時間 1,468 ms
コンパイル使用メモリ 164,084 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-21 21:51:40
合計ジャッジ時間 8,625 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 1,030 ms
5,376 KB
testcase_08 AC 892 ms
5,376 KB
testcase_09 AC 415 ms
5,376 KB
testcase_10 AC 610 ms
5,376 KB
testcase_11 AC 1,062 ms
5,376 KB
testcase_12 WA -
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 64 ms
5,376 KB
testcase_15 AC 1,134 ms
5,376 KB
testcase_16 WA -
testcase_17 AC 58 ms
5,376 KB
testcase_18 AC 969 ms
5,376 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
#define rep(i,n) for(i=0;i<n;++i)
#define each(itr,c) for(__typeof(c.begin()) itr=c.begin(); itr!=c.end(); itr++)
#define mp make_pair
#define pb push_back
#define fi first
#define sc second

int main(int argc, char const *argv[]) {
  int i,j;

  int n;
  cin >>n;
  std::vector<int> a(n+1);
  rep(i,n) cin >>a[i+1];

  //a_iまでの全てのxor
  std::vector<int> x(n+1);
  x[0]=0;
  rep(i,n) x[i+1]=x[i]^a[i+1];

  set<int> s;
  rep(i,n+1){
    rep(j,i+1){
      //printf("  %d\n",x[i]^x[j]);
      s.insert(x[i]^x[j]);
    }
  }

  std::cout << s.size() << std::endl;
  return 0;
}
0