結果

問題 No.1493 隣接xor
ユーザー penguinmanpenguinman
提出日時 2021-04-25 02:34:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 348 ms / 2,000 ms
コード長 322 bytes
コンパイル時間 383 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 54,260 KB
最終ジャッジ日時 2024-07-18 21:20:45
合計ジャッジ時間 9,043 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 334 ms
54,196 KB
testcase_04 AC 341 ms
54,248 KB
testcase_05 AC 348 ms
54,232 KB
testcase_06 AC 339 ms
54,184 KB
testcase_07 AC 342 ms
54,236 KB
testcase_08 AC 336 ms
54,260 KB
testcase_09 AC 342 ms
54,172 KB
testcase_10 AC 339 ms
54,256 KB
testcase_11 AC 338 ms
54,256 KB
testcase_12 AC 338 ms
54,256 KB
testcase_13 AC 338 ms
32,688 KB
testcase_14 AC 285 ms
20,032 KB
testcase_15 AC 29 ms
10,624 KB
testcase_16 AC 28 ms
10,752 KB
testcase_17 AC 29 ms
10,624 KB
testcase_18 AC 29 ms
10,624 KB
testcase_19 AC 29 ms
10,624 KB
testcase_20 AC 193 ms
32,636 KB
testcase_21 AC 215 ms
33,348 KB
testcase_22 AC 150 ms
26,036 KB
testcase_23 AC 190 ms
32,684 KB
testcase_24 AC 327 ms
53,796 KB
testcase_25 AC 144 ms
25,548 KB
testcase_26 AC 224 ms
34,472 KB
testcase_27 AC 105 ms
21,512 KB
testcase_28 AC 310 ms
53,456 KB
testcase_29 AC 225 ms
35,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
dp = [0]*N
dp[0] = 1
mem = {}
now = 0
mod = int(1e9+7)
for i in range(N-1):
    now ^= A[i]
    dp[i+1] = dp[i]*2
    if now in mem.keys():
        dp[i+1] -= dp[mem[now]]
    dp[i+1] %= mod
    if dp[i+1] < 0:
        dp[i+1] += dp[i+1]
    mem[now] = i
print(dp[N-1])
0