結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー augusuto04augusuto04
提出日時 2015-06-12 06:19:57
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 265 ms / 5,000 ms
コード長 679 bytes
コンパイル時間 399 ms
コンパイル使用メモリ 58,028 KB
実行使用メモリ 163,456 KB
最終ジャッジ日時 2024-06-29 02:04:30
合計ジャッジ時間 2,973 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 221 ms
145,280 KB
testcase_08 AC 225 ms
145,792 KB
testcase_09 AC 155 ms
100,864 KB
testcase_10 AC 191 ms
120,832 KB
testcase_11 AC 253 ms
157,696 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 265 ms
163,456 KB
testcase_15 AC 252 ms
163,236 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 59 ms
38,784 KB
testcase_18 AC 215 ms
141,952 KB
testcase_19 AC 28 ms
20,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

bool memo[NMAX + 1][AMAX + 1];
int A[NMAX];

int main(){
  int N;
  cin >> 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