結果

問題 No.1493 隣接xor
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-08-15 12:35:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 320 ms / 2,000 ms
コード長 295 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 56,728 KB
最終ジャッジ日時 2024-10-07 05:18:28
合計ジャッジ時間 8,015 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 308 ms
56,664 KB
testcase_04 AC 312 ms
56,684 KB
testcase_05 AC 311 ms
56,728 KB
testcase_06 AC 311 ms
56,552 KB
testcase_07 AC 319 ms
56,664 KB
testcase_08 AC 298 ms
56,676 KB
testcase_09 AC 301 ms
56,660 KB
testcase_10 AC 297 ms
56,668 KB
testcase_11 AC 305 ms
56,660 KB
testcase_12 AC 304 ms
56,540 KB
testcase_13 AC 320 ms
32,560 KB
testcase_14 AC 256 ms
21,688 KB
testcase_15 AC 28 ms
10,624 KB
testcase_16 AC 26 ms
10,624 KB
testcase_17 AC 27 ms
10,752 KB
testcase_18 AC 27 ms
10,624 KB
testcase_19 AC 27 ms
10,752 KB
testcase_20 AC 162 ms
33,788 KB
testcase_21 AC 184 ms
35,020 KB
testcase_22 AC 135 ms
26,480 KB
testcase_23 AC 172 ms
33,968 KB
testcase_24 AC 299 ms
55,960 KB
testcase_25 AC 130 ms
26,260 KB
testcase_26 AC 192 ms
35,784 KB
testcase_27 AC 91 ms
22,196 KB
testcase_28 AC 269 ms
54,804 KB
testcase_29 AC 200 ms
36,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10 ** 9 + 7
n = int(input())
a = list(map(int, input().split()))
b = [0]
for i in range(n):
	b.append(b[-1] ^ a[i])
dp = [0] * n
dp[0] = 1
prev = dict()
for i in range(1, n):
	dp[i] = dp[i - 1] * 2
	if b[i] in prev:
		dp[i] -= dp[prev[b[i]] - 1]
	dp[i] %= mod
	prev[b[i]] = i
print(dp[-1])
0