結果

問題 No.1171 Runs in Subsequences
ユーザー brthyyjpbrthyyjp
提出日時 2021-10-08 02:23:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 320 ms / 2,000 ms
コード長 1,006 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 78,080 KB
最終ジャッジ日時 2024-07-23 03:15:38
合計ジャッジ時間 4,480 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 39 ms
52,608 KB
testcase_04 AC 38 ms
51,968 KB
testcase_05 AC 38 ms
52,608 KB
testcase_06 AC 42 ms
52,864 KB
testcase_07 AC 39 ms
52,352 KB
testcase_08 AC 38 ms
52,352 KB
testcase_09 AC 38 ms
52,352 KB
testcase_10 AC 56 ms
66,176 KB
testcase_11 AC 56 ms
66,944 KB
testcase_12 AC 55 ms
66,432 KB
testcase_13 AC 56 ms
66,304 KB
testcase_14 AC 57 ms
66,944 KB
testcase_15 AC 310 ms
77,696 KB
testcase_16 AC 309 ms
78,080 KB
testcase_17 AC 320 ms
77,952 KB
testcase_18 AC 319 ms
77,952 KB
testcase_19 AC 316 ms
77,952 KB
testcase_20 AC 315 ms
78,080 KB
testcase_21 AC 314 ms
78,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10**9+7

def main():

    S = str(input())
    S = [ord(c)-ord('a') for c in S]
    n = len(S)
    dp = [[0, 0] for i in range(26)]
    ans = 0
    for i, c in enumerate(S):
        if i == 0:
            dp[c][0] = 1
            dp[c][1] = 1
            continue
        nx = [[0, 0] for j in range(26)]
        nx[c][0] = 1
        nx[c][1] = 1
        for j in range(26):
            nx[j][0] += dp[j][0]
            nx[j][0] %= mod
            nx[j][1] += dp[j][1]
            nx[j][1] %= mod
        for j in range(26):
            if j == c:
                nx[j][0] += dp[j][0]
                nx[j][0] %= mod
                nx[j][1] += dp[j][1]
                nx[j][1] %= mod
            else:
                nx[c][0] += dp[j][0]
                nx[c][0] %= mod
                nx[c][1] += dp[j][0]+dp[j][1]
                nx[c][1] %= mod
        dp = nx
    ans = 0
    for j in range(26):
        ans += dp[j][1]
        ans %= mod
    print(ans)

if __name__ == '__main__':
    main()
0