結果

問題 No.1493 隣接xor
ユーザー penguinmanpenguinman
提出日時 2021-07-13 07:22:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 352 ms / 2,000 ms
コード長 350 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 56,640 KB
最終ジャッジ日時 2024-07-02 09:47:13
合計ジャッジ時間 7,925 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 26 ms
10,496 KB
testcase_03 AC 311 ms
56,368 KB
testcase_04 AC 324 ms
56,600 KB
testcase_05 AC 321 ms
56,472 KB
testcase_06 AC 325 ms
56,368 KB
testcase_07 AC 333 ms
56,416 KB
testcase_08 AC 325 ms
56,428 KB
testcase_09 AC 321 ms
56,528 KB
testcase_10 AC 326 ms
56,640 KB
testcase_11 AC 314 ms
56,576 KB
testcase_12 AC 327 ms
56,584 KB
testcase_13 AC 352 ms
32,576 KB
testcase_14 AC 289 ms
21,704 KB
testcase_15 AC 28 ms
10,752 KB
testcase_16 AC 27 ms
10,496 KB
testcase_17 AC 27 ms
10,624 KB
testcase_18 AC 27 ms
10,624 KB
testcase_19 AC 27 ms
10,496 KB
testcase_20 AC 177 ms
33,936 KB
testcase_21 AC 205 ms
34,844 KB
testcase_22 AC 144 ms
26,500 KB
testcase_23 AC 179 ms
34,020 KB
testcase_24 AC 322 ms
55,932 KB
testcase_25 AC 141 ms
26,284 KB
testcase_26 AC 209 ms
35,724 KB
testcase_27 AC 102 ms
22,332 KB
testcase_28 AC 291 ms
54,912 KB
testcase_29 AC 213 ms
36,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = int(1e9+7)

N = int(input())
A = list(map(int, input().split()))
B = [0]*(N+1)
for i in range(N):
    B[i+1] = A[i]^B[i]

dp = [0]*N
dp[0] = 1
mem = {}

for i in range(1,N):
    dp[i] = dp[i-1]*2
    if B[i] in mem.keys():
        dp[i] -= dp[mem[B[i]]-1]
    dp[i] %= mod
    if dp[i] < 0:
        dp[i] += mod
    mem[B[i]] = i
print(dp[N-1])
0