結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,956 KB
testcase_01 AC 38 ms
52,704 KB
testcase_02 AC 39 ms
53,604 KB
testcase_03 AC 39 ms
54,264 KB
testcase_04 AC 37 ms
52,336 KB
testcase_05 AC 37 ms
53,088 KB
testcase_06 AC 38 ms
52,740 KB
testcase_07 AC 39 ms
52,700 KB
testcase_08 AC 38 ms
53,092 KB
testcase_09 AC 37 ms
52,656 KB
testcase_10 AC 55 ms
67,468 KB
testcase_11 AC 54 ms
67,140 KB
testcase_12 AC 55 ms
68,092 KB
testcase_13 AC 55 ms
67,056 KB
testcase_14 AC 56 ms
68,032 KB
testcase_15 AC 303 ms
78,044 KB
testcase_16 AC 301 ms
77,792 KB
testcase_17 AC 317 ms
77,868 KB
testcase_18 AC 316 ms
78,060 KB
testcase_19 AC 311 ms
77,880 KB
testcase_20 AC 314 ms
78,180 KB
testcase_21 AC 312 ms
78,024 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)]
    #dp[c][0]: 最後がcの文字列の個数
    #dp[c][1]: 最後がcの文字列の連の和
    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
        # i番目の文字列を選ばない場合
        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
        # i番目の文字列を選ぶ場合
        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