結果

問題 No.1171 Runs in Subsequences
ユーザー vwxyzvwxyz
提出日時 2024-12-19 22:53:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 321 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 82,624 KB
実行使用メモリ 78,156 KB
最終ジャッジ日時 2024-12-19 22:53:46
合計ジャッジ時間 3,395 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,704 KB
testcase_01 AC 36 ms
52,280 KB
testcase_02 AC 36 ms
53,160 KB
testcase_03 AC 36 ms
52,744 KB
testcase_04 AC 35 ms
52,816 KB
testcase_05 AC 37 ms
53,812 KB
testcase_06 AC 36 ms
52,692 KB
testcase_07 AC 37 ms
53,200 KB
testcase_08 AC 37 ms
53,832 KB
testcase_09 AC 36 ms
53,972 KB
testcase_10 AC 45 ms
61,540 KB
testcase_11 AC 43 ms
62,072 KB
testcase_12 AC 45 ms
62,800 KB
testcase_13 AC 45 ms
61,548 KB
testcase_14 AC 43 ms
62,116 KB
testcase_15 AC 149 ms
78,016 KB
testcase_16 AC 150 ms
78,120 KB
testcase_17 AC 154 ms
78,156 KB
testcase_18 AC 153 ms
77,868 KB
testcase_19 AC 164 ms
77,872 KB
testcase_20 AC 151 ms
78,028 KB
testcase_21 AC 151 ms
78,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=[ord(s)-97 for s in input()]
M=26
mod=10**9+7
dp0=[0]*M
dp1=[0]*M
for s in S:
    prev0=dp0[:]
    prev1=dp1[:]
    dp0[s]+=1
    dp1[s]+=1
    for t in range(26):
        dp0[s]+=prev0[t]
        dp1[s]+=prev1[t]
        if s!=t:
            dp1[s]+=prev0[t]
    dp0[s]%=mod
    dp1[s]%=mod
ans=sum(dp1)%mod
print(ans)
0