結果

問題 No.1845 Long Substrings
ユーザー lilictakalilictaka
提出日時 2022-05-09 17:42:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,086 ms / 2,000 ms
コード長 775 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 129,772 KB
最終ジャッジ日時 2024-07-16 15:48:24
合計ジャッジ時間 15,431 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 315 ms
129,772 KB
testcase_01 AC 646 ms
110,324 KB
testcase_02 AC 849 ms
119,536 KB
testcase_03 AC 1,086 ms
119,360 KB
testcase_04 AC 1,006 ms
110,336 KB
testcase_05 AC 274 ms
104,916 KB
testcase_06 AC 586 ms
120,140 KB
testcase_07 AC 925 ms
110,208 KB
testcase_08 AC 1,028 ms
107,136 KB
testcase_09 AC 1,035 ms
118,956 KB
testcase_10 AC 292 ms
114,568 KB
testcase_11 AC 677 ms
104,064 KB
testcase_12 AC 975 ms
104,064 KB
testcase_13 AC 932 ms
110,208 KB
testcase_14 AC 1,044 ms
119,656 KB
testcase_15 AC 86 ms
76,608 KB
testcase_16 AC 85 ms
76,384 KB
testcase_17 AC 98 ms
76,808 KB
testcase_18 AC 101 ms
76,416 KB
testcase_19 AC 101 ms
76,928 KB
testcase_20 AC 40 ms
52,480 KB
testcase_21 AC 38 ms
52,352 KB
testcase_22 AC 38 ms
52,096 KB
testcase_23 AC 39 ms
52,736 KB
testcase_24 AC 40 ms
52,096 KB
testcase_25 AC 40 ms
52,548 KB
testcase_26 AC 40 ms
52,096 KB
testcase_27 AC 40 ms
52,096 KB
testcase_28 AC 39 ms
52,352 KB
testcase_29 AC 40 ms
52,480 KB
testcase_30 AC 44 ms
52,096 KB
testcase_31 AC 39 ms
52,480 KB
testcase_32 AC 40 ms
52,608 KB
testcase_33 AC 39 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left
def ch(s):
    return ord(s) - ord('a')
N = int(input())
memo = [[] for _ in range(26)]
A = list(map(int,input().split()))
mod = 10 ** 9 + 7
S = list(map(ch,list(input())))
dp = [0 for _ in range(N)]
for i in range(N):
    if memo[S[i]] == []:
        dp[i] = 1
    memo[S[i]].append(i)
for i in range(N):
    for k in range(26):
        if memo[k] == []:
            pass
        else:
            index = bisect_left(memo[k],i+1)
            if index == len(memo[k]):
                continue
            nx = memo[k][index]
            if S[i] == k:
                dp[nx] += dp[i]
            else:
                dp[nx] += dp[i] * A[i]
            dp[nx] %= mod
ans = 0
for i in range(N):
    ans += dp[i] * A[i]
    ans %= mod
print(ans)
0