結果

問題 No.1493 隣接xor
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-05-01 09:57:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 290 bytes
コンパイル時間 377 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 134,188 KB
最終ジャッジ日時 2024-07-19 16:21:05
合計ジャッジ時間 4,886 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,376 KB
testcase_01 AC 41 ms
53,760 KB
testcase_02 AC 44 ms
53,632 KB
testcase_03 AC 164 ms
133,944 KB
testcase_04 AC 153 ms
133,768 KB
testcase_05 AC 149 ms
133,976 KB
testcase_06 AC 149 ms
133,696 KB
testcase_07 AC 162 ms
133,836 KB
testcase_08 AC 155 ms
134,028 KB
testcase_09 AC 149 ms
133,764 KB
testcase_10 AC 149 ms
133,980 KB
testcase_11 AC 149 ms
133,852 KB
testcase_12 AC 150 ms
134,188 KB
testcase_13 AC 106 ms
104,788 KB
testcase_14 AC 89 ms
105,472 KB
testcase_15 AC 41 ms
53,632 KB
testcase_16 AC 41 ms
53,504 KB
testcase_17 AC 40 ms
53,540 KB
testcase_18 AC 41 ms
53,376 KB
testcase_19 AC 41 ms
53,632 KB
testcase_20 AC 102 ms
108,516 KB
testcase_21 AC 113 ms
109,824 KB
testcase_22 AC 85 ms
99,200 KB
testcase_23 AC 96 ms
109,060 KB
testcase_24 AC 162 ms
133,436 KB
testcase_25 AC 87 ms
96,128 KB
testcase_26 AC 107 ms
103,716 KB
testcase_27 AC 70 ms
85,632 KB
testcase_28 AC 147 ms
127,680 KB
testcase_29 AC 109 ms
100,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
n = int(input())
A = list(map(int,input().split()))
mod = 10**9+7

dic = defaultdict(int)
dp = [0]*(n+1)
dp[1] = 1
now = 0
for i,a in enumerate(A[:n-1],2):
    now ^= a
    dp[i] = dp[i-1]*2 - dp[dic[now]]
    dp[i] %= mod
    dic[now] = i-1
print(dp[n])
0