結果

問題 No.1493 隣接xor
ユーザー penguinmanpenguinman
提出日時 2021-04-25 02:33:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 322 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 132,052 KB
最終ジャッジ日時 2024-07-04 09:23:17
合計ジャッジ時間 4,663 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,456 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 146 ms
131,864 KB
testcase_04 AC 147 ms
131,920 KB
testcase_05 AC 154 ms
131,924 KB
testcase_06 AC 153 ms
131,908 KB
testcase_07 AC 153 ms
131,824 KB
testcase_08 AC 153 ms
132,044 KB
testcase_09 AC 155 ms
131,912 KB
testcase_10 AC 156 ms
131,856 KB
testcase_11 AC 155 ms
131,924 KB
testcase_12 AC 153 ms
132,052 KB
testcase_13 AC 115 ms
102,016 KB
testcase_14 AC 88 ms
102,400 KB
testcase_15 AC 38 ms
51,840 KB
testcase_16 AC 38 ms
51,712 KB
testcase_17 AC 36 ms
51,584 KB
testcase_18 AC 37 ms
51,840 KB
testcase_19 AC 37 ms
51,840 KB
testcase_20 AC 95 ms
105,728 KB
testcase_21 AC 99 ms
111,616 KB
testcase_22 AC 82 ms
96,384 KB
testcase_23 AC 93 ms
105,984 KB
testcase_24 AC 133 ms
110,964 KB
testcase_25 AC 78 ms
93,056 KB
testcase_26 AC 101 ms
112,512 KB
testcase_27 AC 67 ms
82,944 KB
testcase_28 AC 126 ms
107,516 KB
testcase_29 AC 103 ms
113,152 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