結果

問題 No.1493 隣接xor
ユーザー googol_S0googol_S0
提出日時 2021-04-30 22:03:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 393 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,020 KB
実行使用メモリ 136,952 KB
最終ジャッジ日時 2024-07-19 01:29:12
合計ジャッジ時間 4,529 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 36 ms
51,712 KB
testcase_03 AC 153 ms
136,588 KB
testcase_04 AC 152 ms
136,652 KB
testcase_05 AC 153 ms
136,768 KB
testcase_06 AC 150 ms
136,636 KB
testcase_07 AC 151 ms
136,756 KB
testcase_08 AC 149 ms
136,664 KB
testcase_09 AC 150 ms
136,952 KB
testcase_10 AC 151 ms
136,800 KB
testcase_11 AC 152 ms
136,760 KB
testcase_12 AC 152 ms
136,584 KB
testcase_13 AC 114 ms
105,160 KB
testcase_14 AC 91 ms
108,748 KB
testcase_15 AC 37 ms
51,584 KB
testcase_16 AC 36 ms
51,712 KB
testcase_17 AC 37 ms
51,968 KB
testcase_18 AC 36 ms
51,840 KB
testcase_19 AC 37 ms
51,968 KB
testcase_20 AC 96 ms
109,964 KB
testcase_21 AC 111 ms
118,864 KB
testcase_22 AC 86 ms
100,224 KB
testcase_23 AC 94 ms
110,336 KB
testcase_24 AC 141 ms
114,800 KB
testcase_25 AC 81 ms
97,280 KB
testcase_26 AC 109 ms
119,424 KB
testcase_27 AC 72 ms
86,256 KB
testcase_28 AC 137 ms
111,252 KB
testcase_29 AC 112 ms
116,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
C=[0]*(N+1)
F=[0]*(N+1)
F[0]=1
F[1]=1
for i in range(N):
  if i:
    F[i+1]=F[i]&(A[i]==A[i-1])
  C[i+1]=C[i]^A[i]
D=dict()
D[0]=0
B=[0]*(N+1)
for i in range(N):
  B[i+1]=D.get(C[i+1],0)
  D[C[i+1]]=i+1
mod=10**9+7
DP=[0]*(N+2)
DP[1]=1
for i in range(N):
  DP[i+2]=(DP[i+1]+DP[i+1]-DP[B[i+1]]+min(B[i+1],1)*F[i+1])%mod
print((DP[N+1]-DP[N])%mod)
0