結果

問題 No.1493 隣接xor
ユーザー tpynerivertpyneriver
提出日時 2021-04-30 22:23:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 428 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 137,116 KB
最終ジャッジ日時 2024-07-19 01:52:44
合計ジャッジ時間 4,856 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline
from collections import Counter

MOD = 10**9+7
N = int(readline())
A = list(map(int, readline().split()))
for i in range(1, N):
    A[i] ^= A[i-1]
A = [-1] + A[:-1]
N = len(A)

dp = [0]*(N+1)
dp[0] = 1
Dp = dp[:]


pre = Counter()
for i in range(1, N):
    a = A[i]
    pidx = pre[a]
    pre[a] = i
    dp[i] = (Dp[i-1] - Dp[pidx-1])%MOD
    Dp[i] = (Dp[i-1] + dp[i])%MOD

print(Dp[N-1])
0