結果

問題 No.1845 Long Substrings
ユーザー tktk_snsntktk_snsn
提出日時 2022-02-18 22:45:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 253 ms / 2,000 ms
コード長 620 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 115,780 KB
最終ジャッジ日時 2024-06-29 09:32:01
合計ジャッジ時間 5,961 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 204 ms
115,780 KB
testcase_01 AC 212 ms
104,576 KB
testcase_02 AC 253 ms
102,864 KB
testcase_03 AC 251 ms
102,284 KB
testcase_04 AC 248 ms
104,244 KB
testcase_05 AC 179 ms
103,808 KB
testcase_06 AC 209 ms
106,980 KB
testcase_07 AC 225 ms
104,832 KB
testcase_08 AC 239 ms
106,880 KB
testcase_09 AC 240 ms
106,788 KB
testcase_10 AC 179 ms
104,228 KB
testcase_11 AC 212 ms
103,748 KB
testcase_12 AC 233 ms
104,320 KB
testcase_13 AC 222 ms
104,832 KB
testcase_14 AC 251 ms
102,756 KB
testcase_15 AC 59 ms
65,024 KB
testcase_16 AC 60 ms
64,000 KB
testcase_17 AC 62 ms
65,280 KB
testcase_18 AC 62 ms
64,512 KB
testcase_19 AC 65 ms
65,664 KB
testcase_20 AC 40 ms
52,480 KB
testcase_21 AC 40 ms
51,840 KB
testcase_22 AC 40 ms
51,968 KB
testcase_23 AC 40 ms
51,840 KB
testcase_24 AC 41 ms
51,968 KB
testcase_25 AC 41 ms
51,712 KB
testcase_26 AC 41 ms
51,712 KB
testcase_27 AC 40 ms
51,968 KB
testcase_28 AC 40 ms
51,712 KB
testcase_29 AC 40 ms
51,968 KB
testcase_30 AC 39 ms
52,096 KB
testcase_31 AC 39 ms
51,712 KB
testcase_32 AC 41 ms
52,096 KB
testcase_33 AC 42 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10 ** 9 + 7


N = int(input())
A = list(map(int, input().split()))
S = [ord(s) - 97 for s in input()]
pos = [[] for _ in range(26)]
for i in reversed(range(N)):
    pos[S[i]].append(i)

dp = [0] * N
for i in range(26):
    if pos[i]:
        dp[pos[i][-1]] = 1

for i, s in enumerate(S):
    pos[s].pop()
    for j in range(26):
        if pos[j] and s != j:
            dp[pos[j][-1]] += dp[i] * A[i]
            dp[pos[j][-1]] %= mod
        if pos[j] and s == j:
            dp[pos[j][-1]] += dp[i]
            dp[pos[j][-1]] %= mod


ans = 0
for i in range(N):
    ans += A[i] * dp[i]
    ans %= mod
print(ans)
0