結果

問題 No.1493 隣接xor
ユーザー AEnAEn
提出日時 2023-09-30 16:42:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 319 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 135,712 KB
最終ジャッジ日時 2024-07-23 10:26:27
合計ジャッジ時間 6,245 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,168 KB
testcase_01 AC 42 ms
54,200 KB
testcase_02 AC 42 ms
54,196 KB
testcase_03 AC 157 ms
135,464 KB
testcase_04 AC 154 ms
135,532 KB
testcase_05 AC 156 ms
135,416 KB
testcase_06 AC 156 ms
135,240 KB
testcase_07 AC 156 ms
135,312 KB
testcase_08 AC 156 ms
135,512 KB
testcase_09 AC 158 ms
135,532 KB
testcase_10 AC 155 ms
135,632 KB
testcase_11 AC 155 ms
135,712 KB
testcase_12 AC 158 ms
135,344 KB
testcase_13 AC 111 ms
106,036 KB
testcase_14 AC 88 ms
107,224 KB
testcase_15 AC 42 ms
54,488 KB
testcase_16 AC 43 ms
55,368 KB
testcase_17 AC 42 ms
54,140 KB
testcase_18 AC 42 ms
53,792 KB
testcase_19 AC 41 ms
54,616 KB
testcase_20 AC 99 ms
110,184 KB
testcase_21 AC 110 ms
115,132 KB
testcase_22 AC 88 ms
100,432 KB
testcase_23 AC 99 ms
110,012 KB
testcase_24 AC 157 ms
134,772 KB
testcase_25 AC 87 ms
97,620 KB
testcase_26 AC 111 ms
108,772 KB
testcase_27 AC 74 ms
86,484 KB
testcase_28 AC 148 ms
129,580 KB
testcase_29 AC 113 ms
105,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N = int(input())
A = [0]+list(map(int, input().split()))

d = defaultdict(int)
xor = 0
B = [0]*(N+1)
for i in range(N+1):
    xor ^= A[i]
    B[i] = d[xor]
    d[xor] = i

dp = [0]*(N+1)
mod = 10**9+7
dp[1] = 1
for i in range(1,N):
    dp[i+1] = (2*dp[i]-dp[B[i]])%mod
print(dp[-1])
0