結果

問題 No.1171 Runs in Subsequences
ユーザー KudeKude
提出日時 2020-08-14 22:10:00
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 454 bytes
コンパイル時間 775 ms
コンパイル使用メモリ 82,000 KB
実行使用メモリ 76,524 KB
最終ジャッジ日時 2024-10-10 15:27:43
合計ジャッジ時間 15,954 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 14 TLE * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10**9 + 7

dp = [0] * 27
s = input()
dp[26] = 1
ans = 0
for z, c in enumerate(s):
    x = ord(c) - ord('a')
    ndp = [0] * 27
    for i in range(27):
        if i == x:
            ndp[x] = (ndp[x] + dp[i] * 2) % MOD
        else:
            ndp[x] = (ndp[x] + dp[i]) % MOD
            ndp[i] = (ndp[i] + dp[i]) % MOD
            ans += dp[i] * pow(2, len(s)-1-z, MOD)
            ans %= MOD
    dp = ndp
    #print(dp)
    #print(ans)
print(ans)
0