結果

問題 No.1171 Runs in Subsequences
ユーザー qumazakiqumazaki
提出日時 2020-09-10 20:55:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 233 ms / 2,000 ms
コード長 265 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 81,864 KB
実行使用メモリ 76,136 KB
最終ジャッジ日時 2024-06-06 09:56:22
合計ジャッジ時間 3,350 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,944 KB
testcase_01 AC 37 ms
53,228 KB
testcase_02 AC 35 ms
51,816 KB
testcase_03 AC 35 ms
52,236 KB
testcase_04 AC 34 ms
52,744 KB
testcase_05 AC 35 ms
52,424 KB
testcase_06 AC 34 ms
53,300 KB
testcase_07 AC 34 ms
53,496 KB
testcase_08 AC 36 ms
53,620 KB
testcase_09 AC 35 ms
52,196 KB
testcase_10 AC 37 ms
52,296 KB
testcase_11 AC 40 ms
52,000 KB
testcase_12 AC 38 ms
52,888 KB
testcase_13 AC 37 ms
52,436 KB
testcase_14 AC 35 ms
53,156 KB
testcase_15 AC 227 ms
75,988 KB
testcase_16 AC 222 ms
75,564 KB
testcase_17 AC 227 ms
75,764 KB
testcase_18 AC 233 ms
75,656 KB
testcase_19 AC 215 ms
67,516 KB
testcase_20 AC 229 ms
75,872 KB
testcase_21 AC 227 ms
76,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
mod = 10**9+7

n = len(s)
rem = dict()
ans = n* pow(2,n-1,mod)
ans %= mod
for i,si in enumerate(s):
    if(not si in rem):
        rem[si] = 0
    ans -= rem[si] * pow(2,n-i-1,mod)
    ans %= mod
    rem[si] += pow(2,i,mod)
    rem[si] %= mod
print(ans)
0