結果

問題 No.1171 Runs in Subsequences
ユーザー NoneNone
提出日時 2021-04-13 23:30:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 337 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 150,840 KB
最終ジャッジ日時 2024-06-30 02:04:28
合計ジャッジ時間 3,562 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
133,504 KB
testcase_01 AC 92 ms
133,504 KB
testcase_02 AC 94 ms
133,636 KB
testcase_03 AC 94 ms
133,632 KB
testcase_04 AC 92 ms
133,440 KB
testcase_05 AC 98 ms
133,888 KB
testcase_06 AC 96 ms
133,668 KB
testcase_07 AC 98 ms
133,760 KB
testcase_08 AC 91 ms
133,396 KB
testcase_09 AC 93 ms
133,376 KB
testcase_10 AC 99 ms
136,144 KB
testcase_11 AC 100 ms
136,192 KB
testcase_12 AC 101 ms
136,456 KB
testcase_13 AC 97 ms
136,300 KB
testcase_14 AC 102 ms
136,208 KB
testcase_15 AC 174 ms
150,816 KB
testcase_16 AC 168 ms
150,840 KB
testcase_17 AC 171 ms
150,692 KB
testcase_18 AC 169 ms
150,628 KB
testcase_19 AC 159 ms
146,548 KB
testcase_20 AC 169 ms
150,528 KB
testcase_21 AC 174 ms
150,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD=10**9+7
p=1
P=[]
for _ in range(10**6+2):
    P.append(p)
    p*=2
    p%=MOD

S=input().rstrip()

dp=0
cnt=[0]*26

for i,s in enumerate(S):
    j=ord(s)-ord("a")
    dp*=2
    dp+=P[i]-cnt[j]
    dp%=MOD
    cnt[j]+=cnt[j]
    for k in range(26):
        if k!=j:
            cnt[j]+=cnt[k]
    cnt[j]+=1
    cnt[j]%=MOD

print(dp)
0