結果

問題 No.1493 隣接xor
ユーザー rlangevinrlangevin
提出日時 2024-04-11 08:54:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 338 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 133,884 KB
最終ジャッジ日時 2024-10-02 21:29:31
合計ジャッジ時間 5,542 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,504 KB
testcase_01 AC 40 ms
53,504 KB
testcase_02 AC 40 ms
53,696 KB
testcase_03 AC 150 ms
133,440 KB
testcase_04 AC 149 ms
133,456 KB
testcase_05 AC 148 ms
133,572 KB
testcase_06 AC 149 ms
133,452 KB
testcase_07 AC 149 ms
133,504 KB
testcase_08 AC 149 ms
133,376 KB
testcase_09 AC 146 ms
133,836 KB
testcase_10 AC 149 ms
133,272 KB
testcase_11 AC 146 ms
133,884 KB
testcase_12 AC 146 ms
133,764 KB
testcase_13 AC 108 ms
102,420 KB
testcase_14 AC 90 ms
107,136 KB
testcase_15 AC 40 ms
53,888 KB
testcase_16 AC 41 ms
53,504 KB
testcase_17 AC 40 ms
53,248 KB
testcase_18 AC 40 ms
53,248 KB
testcase_19 AC 41 ms
53,504 KB
testcase_20 AC 96 ms
109,124 KB
testcase_21 AC 108 ms
106,152 KB
testcase_22 AC 86 ms
99,712 KB
testcase_23 AC 99 ms
109,408 KB
testcase_24 AC 144 ms
112,060 KB
testcase_25 AC 83 ms
96,256 KB
testcase_26 AC 106 ms
100,136 KB
testcase_27 AC 70 ms
85,760 KB
testcase_28 AC 132 ms
108,628 KB
testcase_29 AC 110 ms
98,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
Ac = [0] * (N + 1)
for i in range(N):
    Ac[i + 1] = Ac[i] ^ A[i]
    
from collections import *
ind = defaultdict(int)
dp = [0] * (N + 1)
dp[0] = 1
mod = 10 ** 9 + 7
for i in range(1, N):
    dp[i] = (dp[i - 1] * 2 - dp[ind[Ac[i]] - 1]) % mod
    ind[Ac[i]] = i
    
print(dp[N - 1])
0