結果

問題 No.1493 隣接xor
ユーザー ygd.ygd.
提出日時 2021-05-05 01:18:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 372 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 81,900 KB
実行使用メモリ 132,220 KB
最終ジャッジ日時 2024-07-23 20:56:53
合計ジャッジ時間 6,099 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 137 ms
131,908 KB
testcase_04 AC 139 ms
131,896 KB
testcase_05 AC 138 ms
131,736 KB
testcase_06 AC 138 ms
131,700 KB
testcase_07 AC 138 ms
131,848 KB
testcase_08 AC 138 ms
131,820 KB
testcase_09 AC 138 ms
131,824 KB
testcase_10 AC 135 ms
131,836 KB
testcase_11 AC 134 ms
132,096 KB
testcase_12 AC 136 ms
132,220 KB
testcase_13 AC 101 ms
101,896 KB
testcase_14 AC 78 ms
102,668 KB
testcase_15 AC 37 ms
52,736 KB
testcase_16 AC 37 ms
52,608 KB
testcase_17 AC 37 ms
52,420 KB
testcase_18 AC 37 ms
52,560 KB
testcase_19 AC 37 ms
52,876 KB
testcase_20 AC 86 ms
106,320 KB
testcase_21 AC 92 ms
111,564 KB
testcase_22 AC 77 ms
97,284 KB
testcase_23 AC 86 ms
106,100 KB
testcase_24 AC 127 ms
110,884 KB
testcase_25 AC 75 ms
93,236 KB
testcase_26 AC 95 ms
112,396 KB
testcase_27 AC 66 ms
83,316 KB
testcase_28 AC 121 ms
107,652 KB
testcase_29 AC 95 ms
113,124 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