結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,760 KB
testcase_01 AC 46 ms
53,376 KB
testcase_02 AC 47 ms
54,016 KB
testcase_03 AC 152 ms
133,892 KB
testcase_04 AC 152 ms
134,024 KB
testcase_05 AC 155 ms
133,920 KB
testcase_06 AC 153 ms
133,884 KB
testcase_07 AC 154 ms
133,920 KB
testcase_08 AC 155 ms
133,988 KB
testcase_09 AC 151 ms
133,792 KB
testcase_10 AC 155 ms
134,056 KB
testcase_11 AC 153 ms
133,792 KB
testcase_12 AC 152 ms
134,172 KB
testcase_13 AC 113 ms
104,696 KB
testcase_14 AC 89 ms
105,472 KB
testcase_15 AC 44 ms
53,504 KB
testcase_16 AC 44 ms
54,016 KB
testcase_17 AC 43 ms
53,376 KB
testcase_18 AC 43 ms
53,376 KB
testcase_19 AC 44 ms
53,760 KB
testcase_20 AC 99 ms
108,672 KB
testcase_21 AC 108 ms
109,824 KB
testcase_22 AC 89 ms
99,072 KB
testcase_23 AC 99 ms
109,240 KB
testcase_24 AC 152 ms
133,636 KB
testcase_25 AC 87 ms
96,000 KB
testcase_26 AC 108 ms
103,936 KB
testcase_27 AC 73 ms
85,504 KB
testcase_28 AC 146 ms
127,672 KB
testcase_29 AC 111 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[:-1],1):
    now ^= a
    dp[i+1] = dp[i]*2 - dp[dic[now]]
    dp[i+1] %= mod
    dic[now] = i
print(dp[n])
0