結果

問題 No.1845 Long Substrings
ユーザー chineristACchineristAC
提出日時 2022-02-18 22:38:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 248 ms / 2,000 ms
コード長 679 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 107,540 KB
最終ジャッジ日時 2024-06-29 09:25:03
合計ジャッジ時間 5,837 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 222 ms
106,264 KB
testcase_01 AC 207 ms
105,088 KB
testcase_02 AC 248 ms
107,540 KB
testcase_03 AC 228 ms
107,156 KB
testcase_04 AC 210 ms
105,472 KB
testcase_05 AC 207 ms
100,864 KB
testcase_06 AC 218 ms
106,428 KB
testcase_07 AC 205 ms
104,832 KB
testcase_08 AC 219 ms
104,900 KB
testcase_09 AC 220 ms
106,316 KB
testcase_10 AC 201 ms
104,960 KB
testcase_11 AC 210 ms
100,856 KB
testcase_12 AC 217 ms
101,068 KB
testcase_13 AC 205 ms
105,216 KB
testcase_14 AC 222 ms
106,196 KB
testcase_15 AC 66 ms
66,560 KB
testcase_16 AC 64 ms
66,048 KB
testcase_17 AC 64 ms
66,176 KB
testcase_18 AC 66 ms
66,048 KB
testcase_19 AC 68 ms
66,432 KB
testcase_20 AC 51 ms
55,808 KB
testcase_21 AC 50 ms
55,680 KB
testcase_22 AC 50 ms
55,680 KB
testcase_23 AC 50 ms
55,680 KB
testcase_24 AC 50 ms
55,680 KB
testcase_25 AC 50 ms
55,808 KB
testcase_26 AC 50 ms
55,552 KB
testcase_27 AC 49 ms
55,424 KB
testcase_28 AC 50 ms
55,680 KB
testcase_29 AC 50 ms
55,552 KB
testcase_30 AC 50 ms
55,808 KB
testcase_31 AC 50 ms
55,552 KB
testcase_32 AC 49 ms
55,680 KB
testcase_33 AC 51 ms
55,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import log,gcd

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

mod = 10**9 + 7

N = int(input())
A = li()
S = input()
S = [ord(s)-ord("a") for s in S]

dp = [0 for i in range(N)]
memo = [0 for i in range(26)]
for i in range(N):
    dp[i] = A[i]
    for j in range(26):
        if j!=S[i]:
            dp[i] += A[i] * memo[j]
        else:
            dp[i] += memo[j]
        dp[i] %= mod
    dp[i] %= mod
    memo[S[i]] = dp[i]

res = sum(memo) % mod
print(res)
0