結果

問題 No.1845 Long Substrings
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-02-21 22:42:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 363 ms / 2,000 ms
コード長 664 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 145,744 KB
最終ジャッジ日時 2024-06-30 01:41:17
合計ジャッジ時間 8,311 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 343 ms
145,616 KB
testcase_01 AC 333 ms
136,364 KB
testcase_02 AC 357 ms
145,744 KB
testcase_03 AC 363 ms
145,620 KB
testcase_04 AC 335 ms
136,524 KB
testcase_05 AC 312 ms
130,136 KB
testcase_06 AC 335 ms
133,784 KB
testcase_07 AC 332 ms
136,572 KB
testcase_08 AC 346 ms
132,664 KB
testcase_09 AC 343 ms
133,668 KB
testcase_10 AC 330 ms
136,068 KB
testcase_11 AC 323 ms
130,404 KB
testcase_12 AC 334 ms
132,048 KB
testcase_13 AC 330 ms
134,768 KB
testcase_14 AC 356 ms
144,892 KB
testcase_15 AC 64 ms
66,432 KB
testcase_16 AC 61 ms
65,408 KB
testcase_17 AC 56 ms
65,792 KB
testcase_18 AC 55 ms
65,664 KB
testcase_19 AC 57 ms
66,304 KB
testcase_20 AC 34 ms
52,224 KB
testcase_21 AC 34 ms
52,096 KB
testcase_22 AC 36 ms
51,968 KB
testcase_23 AC 37 ms
52,096 KB
testcase_24 AC 36 ms
51,840 KB
testcase_25 AC 37 ms
51,712 KB
testcase_26 AC 36 ms
52,096 KB
testcase_27 AC 37 ms
51,840 KB
testcase_28 AC 35 ms
52,096 KB
testcase_29 AC 36 ms
52,096 KB
testcase_30 AC 35 ms
51,712 KB
testcase_31 AC 36 ms
51,840 KB
testcase_32 AC 35 ms
52,224 KB
testcase_33 AC 35 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int,input().split()))
S = input()
mod = 10**9+7
next = [[n]*26 for i in range(n+1)]
for i in range(n)[::-1]:
    s = ord(S[i])-ord("a")
    for j in range(26):
        if j == s:
            next[i][j] = i
        else:
            next[i][j] = next[i+1][j]


dp = [0]*(n+2)
for i in range(26):
    if next[0][i] != n:
        dp[next[0][i]] += 1

ans = 0
for i,(a,s) in enumerate(zip(A,S)):
    s = ord(s)-ord("a")
    ans += dp[i]*a
    ans %= mod
    for j in range(26):
        if s == j:
            dp[next[i+1][j]] += dp[i]
        else:
            dp[next[i+1][j]] += dp[i]*a%mod
        dp[next[i+1][j]] %= mod

print(ans)
0