結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー nCk_cvnCk_cv
提出日時 2015-12-10 18:53:41
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 371 ms / 5,000 ms
コード長 606 bytes
コンパイル時間 1,416 ms
コンパイル使用メモリ 71,424 KB
実行使用メモリ 323,396 KB
最終ジャッジ日時 2024-06-29 12:17:39
合計ジャッジ時間 5,085 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 354 ms
286,988 KB
testcase_08 AC 331 ms
288,256 KB
testcase_09 AC 228 ms
198,400 KB
testcase_10 AC 274 ms
238,464 KB
testcase_11 AC 363 ms
312,448 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 339 ms
323,288 KB
testcase_15 AC 371 ms
323,396 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 83 ms
74,112 KB
testcase_18 AC 335 ms
280,192 KB
testcase_19 AC 42 ms
38,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <math.h>
#include <stdio.h>
#include <algorithm>
#include <string>
#include <map>
#include <queue>
using namespace std;
#define ll long long

bool dp[5001][65536];

int main() {
  int N;
  cin >> N;
  int a[N];
  for(int i = 0; i < N; i++) {
    cin >> a[i];
  }
  dp[0][0] = true;
  for(int i = 0; i < N; i++) {
    for(int j = 0; j < 65536; j++) {
      dp[i+1][j] |= dp[i][j];
      if(!dp[i][j]) continue;
      dp[i+1][j ^ a[i]] = true;
    }
  }
  int ans = 0;
  for(int i = 0; i < 65536; i++) {
    if(dp[N][i]) ans++;
  }
  cout << ans << endl;




}
0