結果

問題 No.1845 Long Substrings
ユーザー rlangevinrlangevin
提出日時 2023-02-05 17:03:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 179 ms / 2,000 ms
コード長 491 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 117,024 KB
最終ジャッジ日時 2024-07-04 05:20:17
合計ジャッジ時間 5,820 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 179 ms
116,432 KB
testcase_01 AC 155 ms
110,460 KB
testcase_02 AC 168 ms
117,024 KB
testcase_03 AC 170 ms
116,308 KB
testcase_04 AC 157 ms
110,540 KB
testcase_05 AC 156 ms
105,856 KB
testcase_06 AC 158 ms
107,264 KB
testcase_07 AC 157 ms
110,416 KB
testcase_08 AC 158 ms
107,136 KB
testcase_09 AC 158 ms
107,252 KB
testcase_10 AC 155 ms
110,592 KB
testcase_11 AC 157 ms
105,600 KB
testcase_12 AC 151 ms
104,336 KB
testcase_13 AC 154 ms
110,592 KB
testcase_14 AC 169 ms
116,384 KB
testcase_15 AC 50 ms
63,232 KB
testcase_16 AC 48 ms
63,232 KB
testcase_17 AC 48 ms
62,976 KB
testcase_18 AC 48 ms
62,720 KB
testcase_19 AC 48 ms
63,744 KB
testcase_20 AC 38 ms
52,352 KB
testcase_21 AC 38 ms
51,968 KB
testcase_22 AC 38 ms
52,224 KB
testcase_23 AC 38 ms
52,224 KB
testcase_24 AC 38 ms
52,352 KB
testcase_25 AC 39 ms
52,352 KB
testcase_26 AC 39 ms
52,096 KB
testcase_27 AC 39 ms
52,480 KB
testcase_28 AC 39 ms
52,480 KB
testcase_29 AC 39 ms
51,712 KB
testcase_30 AC 38 ms
51,840 KB
testcase_31 AC 39 ms
52,224 KB
testcase_32 AC 39 ms
52,224 KB
testcase_33 AC 37 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def alp_to_num(cha):
    num = ord(cha) - ord("a")
    return num

N = int(input())
A = list(map(int, input().split()))
mod = 10 ** 9 + 7
S = list(input())
S = list(map(alp_to_num, S))

pre = [0] * 27
pre[26] = 1
psm = 1
for i in range(N):
    dp = [0] * 27
    sm = 0
    dp[S[i]] += (psm - pre[S[i]]) * A[i]
    for c in range(27):
        dp[c] += pre[c]
        sm += dp[c]
        dp[c] %= mod
        sm %= mod
    dp, pre = pre, dp
    sm, psm = psm, sm 
print(sum(pre[:26])% mod)    
0