結果

問題 No.1493 隣接xor
ユーザー 草苺奶昔草苺奶昔
提出日時 2024-02-16 01:22:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 809 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 142,452 KB
最終ジャッジ日時 2024-09-28 19:10:58
合計ジャッジ時間 5,928 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
66,996 KB
testcase_01 AC 53 ms
68,584 KB
testcase_02 AC 52 ms
68,840 KB
testcase_03 AC 142 ms
142,324 KB
testcase_04 AC 142 ms
142,452 KB
testcase_05 AC 145 ms
141,944 KB
testcase_06 AC 145 ms
142,148 KB
testcase_07 AC 148 ms
142,092 KB
testcase_08 AC 144 ms
142,212 KB
testcase_09 AC 146 ms
142,008 KB
testcase_10 AC 143 ms
142,096 KB
testcase_11 AC 139 ms
142,212 KB
testcase_12 AC 142 ms
142,044 KB
testcase_13 AC 107 ms
110,856 KB
testcase_14 AC 101 ms
104,956 KB
testcase_15 AC 51 ms
67,460 KB
testcase_16 AC 51 ms
67,984 KB
testcase_17 AC 52 ms
68,108 KB
testcase_18 AC 52 ms
67,272 KB
testcase_19 AC 52 ms
67,196 KB
testcase_20 AC 102 ms
109,924 KB
testcase_21 AC 109 ms
115,288 KB
testcase_22 AC 98 ms
101,528 KB
testcase_23 AC 110 ms
110,644 KB
testcase_24 AC 139 ms
141,720 KB
testcase_25 AC 93 ms
99,304 KB
testcase_26 AC 114 ms
115,212 KB
testcase_27 AC 81 ms
87,816 KB
testcase_28 AC 136 ms
135,100 KB
testcase_29 AC 111 ms
115,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from typing import Any, Sequence


def countSubSequence(seq: Sequence[Any], mod=int(1e9 + 7)) -> int:
    n = len(seq)
    dp = [0] * (n + 1)
    dp[0] = 1
    last = dict()
    for i, c in enumerate(seq):
        dp[i + 1] = 2 * dp[i] % mod
        if c in last:
            dp[i + 1] -= dp[last[c]]
        last[c] = i
    return (dp[n] - 1) % mod


if __name__ == "__main__":
    # https://yukicoder.me/problems/no/1493
    # 给定一个长度为n的数组,每次可以将相邻的两个数换成xor
    # 问可以得到的数组的个数模1e9+7
    MOD = int(1e9 + 7)
    n = int(input())
    nums = list(map(int, input().split()))
    for i in range(n - 1):
        nums[i + 1] ^= nums[i]
    nums = nums[:-1]
    res = countSubSequence(nums, MOD)
    res = (res + 1) % MOD  # 空集
    print(res)
0