結果

問題 No.1171 Runs in Subsequences
ユーザー NoneNone
提出日時 2021-04-13 23:30:12
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 321 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 157,980 KB
最終ジャッジ日時 2024-06-30 02:04:18
合計ジャッジ時間 5,500 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
141,120 KB
testcase_01 AC 86 ms
133,832 KB
testcase_02 AC 88 ms
133,796 KB
testcase_03 AC 85 ms
134,372 KB
testcase_04 AC 87 ms
133,820 KB
testcase_05 AC 89 ms
134,072 KB
testcase_06 AC 85 ms
133,688 KB
testcase_07 AC 87 ms
133,800 KB
testcase_08 AC 88 ms
134,044 KB
testcase_09 AC 86 ms
133,832 KB
testcase_10 AC 98 ms
141,512 KB
testcase_11 AC 98 ms
142,196 KB
testcase_12 AC 97 ms
141,912 KB
testcase_13 AC 98 ms
142,160 KB
testcase_14 AC 98 ms
142,108 KB
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

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

print(dp)
0