結果

問題 No.1493 隣接xor
ユーザー vwxyzvwxyz
提出日時 2023-02-16 12:02:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 264 ms / 2,000 ms
コード長 500 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 48,976 KB
最終ジャッジ日時 2024-07-18 13:22:30
合計ジャッジ時間 6,101 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 264 ms
48,820 KB
testcase_04 AC 259 ms
48,748 KB
testcase_05 AC 258 ms
48,976 KB
testcase_06 AC 255 ms
48,864 KB
testcase_07 AC 264 ms
48,716 KB
testcase_08 AC 258 ms
48,760 KB
testcase_09 AC 260 ms
48,720 KB
testcase_10 AC 262 ms
48,816 KB
testcase_11 AC 262 ms
48,748 KB
testcase_12 AC 262 ms
48,824 KB
testcase_13 AC 231 ms
33,288 KB
testcase_14 AC 185 ms
20,400 KB
testcase_15 AC 27 ms
10,624 KB
testcase_16 AC 26 ms
10,752 KB
testcase_17 AC 26 ms
10,624 KB
testcase_18 AC 26 ms
10,624 KB
testcase_19 AC 27 ms
10,624 KB
testcase_20 AC 138 ms
29,828 KB
testcase_21 AC 161 ms
30,560 KB
testcase_22 AC 112 ms
23,424 KB
testcase_23 AC 141 ms
30,180 KB
testcase_24 AC 250 ms
48,340 KB
testcase_25 AC 112 ms
23,080 KB
testcase_26 AC 158 ms
30,908 KB
testcase_27 AC 84 ms
20,464 KB
testcase_28 AC 230 ms
47,984 KB
testcase_29 AC 172 ms
31,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline
from collections import defaultdict

N=int(readline())
A=list(map(int,readline().split()))
for i in range(1,N-1):
    A[i]^=A[i-1]
A.pop()
def Subsequence_Count(lst,mod=0):
    le=len(lst)
    dp=[0]*(le+1)
    prev={}
    dp[0]=1
    for i in range(le):
        dp[i+1]=dp[i]+dp[i]-(dp[prev[lst[i]]] if lst[i] in prev else 0)
        if mod:
            dp[i+1]%=mod
        prev[lst[i]]=i
    return dp[le]

mod=10**9+7
ans=Subsequence_Count(A,mod)
print(ans)
0