結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー augusuto04augusuto04
提出日時 2015-06-12 06:10:40
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 672 bytes
コンパイル時間 464 ms
コンパイル使用メモリ 58,872 KB
実行使用メモリ 83,456 KB
最終ジャッジ日時 2024-07-06 15:50:07
合計ジャッジ時間 2,503 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 RE -
testcase_08 AC 150 ms
74,624 KB
testcase_09 AC 102 ms
51,968 KB
testcase_10 AC 120 ms
62,208 KB
testcase_11 AC 159 ms
80,512 KB
testcase_12 RE -
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 131 ms
83,456 KB
testcase_15 AC 169 ms
83,456 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 37 ms
20,992 KB
testcase_18 WA -
testcase_19 AC 18 ms
12,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
using namespace std;
static const int NMAX = 5000;
static const int AMAX = 16384;

int main(){
  int N;
  cin >> N;
  bool memo[N + 1][AMAX + 1];
  int A[N];
  for(int i = 0; i < N; i++)
    cin >> A[i];

  for(int i = 0; i <= N; i++){
    for(int j = 0; j <= AMAX; j++){
      memo[i][j] = false;
    }
  }
  memo[0][0] = 1;

  for(int i = 0; i < N; i++){
    for(int j = 0; j <= AMAX; j++){
      if(memo[i][j]){
        memo[i + 1][(j ^ A[i])] = true;
        memo[i + 1][j] = true;
      }
    }
  }

  int result = 0;
  for(int i = 0; i <= AMAX; i++){
    if(memo[N][i]){
      result++;
    }
  }
  cout << result << endl;
}
0