結果

問題 No.1493 隣接xor
ユーザー vwxyzvwxyz
提出日時 2023-02-16 10:51:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 500 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 132,816 KB
最終ジャッジ日時 2024-07-18 12:41:55
合計ジャッジ時間 4,271 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,808 KB
testcase_01 AC 37 ms
54,088 KB
testcase_02 AC 35 ms
55,600 KB
testcase_03 AC 137 ms
132,512 KB
testcase_04 AC 137 ms
132,640 KB
testcase_05 AC 134 ms
132,612 KB
testcase_06 AC 136 ms
132,816 KB
testcase_07 AC 139 ms
132,532 KB
testcase_08 AC 137 ms
132,440 KB
testcase_09 AC 138 ms
132,556 KB
testcase_10 AC 137 ms
132,704 KB
testcase_11 AC 143 ms
132,480 KB
testcase_12 AC 141 ms
132,344 KB
testcase_13 AC 103 ms
103,556 KB
testcase_14 AC 88 ms
105,436 KB
testcase_15 AC 39 ms
54,248 KB
testcase_16 AC 38 ms
54,124 KB
testcase_17 AC 36 ms
54,988 KB
testcase_18 AC 36 ms
54,424 KB
testcase_19 AC 36 ms
54,628 KB
testcase_20 AC 87 ms
107,412 KB
testcase_21 AC 98 ms
104,028 KB
testcase_22 AC 79 ms
98,696 KB
testcase_23 AC 89 ms
107,544 KB
testcase_24 AC 137 ms
132,220 KB
testcase_25 AC 77 ms
95,372 KB
testcase_26 AC 96 ms
97,592 KB
testcase_27 AC 66 ms
86,712 KB
testcase_28 AC 135 ms
126,512 KB
testcase_29 AC 98 ms
97,528 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+2)
    prev=defaultdict(lambda:-1)
    dp[1]=1
    for i in range(le):
        dp[i+2]=dp[i+1]+dp[i+1]-dp[prev[lst[i]]+1]
        if mod:
            dp[i+2]%=mod
        prev[lst[i]]=i
    return dp[le+1]
mod=10**9+7
ans=Subsequence_Count(A,mod)
print(ans)
0