結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 311 ms
48,872 KB
testcase_04 AC 303 ms
48,820 KB
testcase_05 AC 298 ms
48,644 KB
testcase_06 AC 297 ms
48,932 KB
testcase_07 AC 304 ms
48,868 KB
testcase_08 AC 293 ms
48,760 KB
testcase_09 AC 299 ms
48,700 KB
testcase_10 AC 303 ms
48,516 KB
testcase_11 AC 303 ms
48,772 KB
testcase_12 AC 298 ms
48,868 KB
testcase_13 AC 227 ms
33,044 KB
testcase_14 AC 182 ms
20,276 KB
testcase_15 AC 26 ms
10,752 KB
testcase_16 AC 26 ms
10,496 KB
testcase_17 AC 26 ms
10,496 KB
testcase_18 AC 26 ms
10,624 KB
testcase_19 AC 26 ms
10,752 KB
testcase_20 AC 167 ms
29,776 KB
testcase_21 AC 185 ms
30,564 KB
testcase_22 AC 134 ms
23,428 KB
testcase_23 AC 166 ms
30,240 KB
testcase_24 AC 293 ms
48,364 KB
testcase_25 AC 127 ms
23,232 KB
testcase_26 AC 187 ms
30,804 KB
testcase_27 AC 92 ms
20,196 KB
testcase_28 AC 271 ms
48,116 KB
testcase_29 AC 192 ms
31,192 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