結果

問題 No.1493 隣接xor
ユーザー SSRSSSRS
提出日時 2021-04-30 21:33:29
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 523 bytes
コンパイル時間 1,477 ms
コンパイル使用メモリ 178,396 KB
実行使用メモリ 17,408 KB
最終ジャッジ日時 2024-07-18 23:57:18
合計ジャッジ時間 5,798 ms
ジャッジサーバーID
(参考情報)
judge3 / 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 191 ms
17,280 KB
testcase_04 AC 191 ms
17,280 KB
testcase_05 AC 193 ms
17,280 KB
testcase_06 AC 196 ms
17,280 KB
testcase_07 AC 195 ms
17,152 KB
testcase_08 AC 190 ms
17,280 KB
testcase_09 AC 197 ms
17,280 KB
testcase_10 AC 196 ms
17,280 KB
testcase_11 AC 197 ms
17,280 KB
testcase_12 AC 194 ms
17,408 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 1 ms
6,940 KB
testcase_19 AC 1 ms
6,940 KB
testcase_20 AC 102 ms
10,496 KB
testcase_21 AC 105 ms
11,520 KB
testcase_22 AC 72 ms
9,088 KB
testcase_23 AC 94 ms
10,624 KB
testcase_24 AC 184 ms
16,896 KB
testcase_25 AC 71 ms
8,704 KB
testcase_26 AC 114 ms
12,032 KB
testcase_27 AC 45 ms
6,940 KB
testcase_28 AC 175 ms
15,872 KB
testcase_29 AC 119 ms
12,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const long long MOD = 1000000007;
int main(){
  int N;
  cin >> N;
  vector<int> A(N);
  for (int i = 0; i < N; i++){
    cin >> A[i];
  }
  vector<int> X(N + 1);
  X[0] = 0;
  for (int i = 0; i < N; i++){
    X[i + 1] = X[i] ^ A[i];
  }
  map<int, long long> mp;
  mp[0] = 1;
  long long sum = 1;
  for (int i = 1; i < N; i++){
    long long tmp = sum + MOD - mp[X[i]];
    tmp %= MOD;
    mp[X[i]] = sum;
    sum = tmp + mp[X[i]];
    sum %= MOD;
  }
  cout << sum << endl;
}
0