結果

問題 No.1493 隣接xor
ユーザー googol_S0googol_S0
提出日時 2021-04-30 21:58:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 307 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 134,960 KB
最終ジャッジ日時 2024-07-19 01:24:29
合計ジャッジ時間 4,389 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,432 KB
testcase_01 AC 37 ms
52,124 KB
testcase_02 AC 36 ms
52,888 KB
testcase_03 AC 146 ms
134,960 KB
testcase_04 AC 143 ms
134,852 KB
testcase_05 AC 142 ms
134,904 KB
testcase_06 AC 144 ms
134,908 KB
testcase_07 AC 146 ms
134,904 KB
testcase_08 AC 141 ms
134,772 KB
testcase_09 AC 142 ms
134,832 KB
testcase_10 AC 148 ms
134,864 KB
testcase_11 AC 147 ms
134,904 KB
testcase_12 AC 143 ms
134,900 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 37 ms
52,224 KB
testcase_16 AC 36 ms
51,712 KB
testcase_17 AC 37 ms
52,096 KB
testcase_18 AC 36 ms
52,224 KB
testcase_19 AC 36 ms
51,968 KB
testcase_20 AC 92 ms
109,256 KB
testcase_21 AC 97 ms
114,364 KB
testcase_22 AC 82 ms
99,700 KB
testcase_23 AC 91 ms
108,476 KB
testcase_24 AC 136 ms
113,272 KB
testcase_25 AC 79 ms
95,488 KB
testcase_26 AC 106 ms
118,296 KB
testcase_27 AC 67 ms
84,736 KB
testcase_28 AC 131 ms
110,148 KB
testcase_29 AC 107 ms
118,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
C=[0]*(N+1)
for i in range(N):
  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]])%mod
print((DP[N+1]-DP[N])%mod)
0