結果

問題 No.1845 Long Substrings
ユーザー ygd.ygd.
提出日時 2022-02-18 22:35:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 1,211 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 82,056 KB
実行使用メモリ 104,924 KB
最終ジャッジ日時 2024-06-29 09:21:54
合計ジャッジ時間 4,175 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
100,076 KB
testcase_01 AC 120 ms
104,800 KB
testcase_02 AC 136 ms
100,172 KB
testcase_03 AC 136 ms
99,876 KB
testcase_04 AC 121 ms
104,860 KB
testcase_05 AC 140 ms
99,400 KB
testcase_06 AC 132 ms
101,584 KB
testcase_07 AC 120 ms
104,924 KB
testcase_08 AC 131 ms
101,840 KB
testcase_09 AC 132 ms
101,300 KB
testcase_10 AC 119 ms
104,792 KB
testcase_11 AC 127 ms
99,568 KB
testcase_12 AC 127 ms
99,560 KB
testcase_13 AC 118 ms
104,416 KB
testcase_14 AC 134 ms
100,032 KB
testcase_15 AC 45 ms
64,064 KB
testcase_16 AC 43 ms
64,748 KB
testcase_17 AC 43 ms
64,636 KB
testcase_18 AC 42 ms
64,796 KB
testcase_19 AC 43 ms
65,792 KB
testcase_20 AC 34 ms
53,696 KB
testcase_21 AC 34 ms
53,408 KB
testcase_22 AC 34 ms
55,124 KB
testcase_23 AC 35 ms
53,544 KB
testcase_24 AC 36 ms
53,924 KB
testcase_25 AC 35 ms
54,360 KB
testcase_26 AC 34 ms
53,900 KB
testcase_27 AC 35 ms
55,396 KB
testcase_28 AC 35 ms
54,872 KB
testcase_29 AC 35 ms
54,192 KB
testcase_30 AC 35 ms
54,060 KB
testcase_31 AC 37 ms
54,320 KB
testcase_32 AC 36 ms
53,528 KB
testcase_33 AC 35 ms
55,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#input = sys.stdin.readline #文字列につけてはダメ
#input = sys.stdin.buffer.readline #文字列につけてはダメ
#sys.setrecursionlimit(1000000)
#import bisect
#import itertools
#import random
#from heapq import heapify, heappop, heappush
#from collections import defaultdict 
#from collections import deque
import copy
#import math
#from functools import lru_cache
#@lru_cache(maxsize=None)
MOD = pow(10,9) + 7
#MOD = 998244353
#dx = [1,0,-1,0]
#dy = [0,1,0,-1]


def main():
    N = int(input())
    A = list(map(int,input().split()))
    S = str(input())
    
    #dp[i][j]:i番目Aまで見て、アルファベットjが最後の時の場合の数。
    #j == 0は空文字列
    dp = [0]*27
    #dp[0] = 1
    for i in range(N):
        p = copy.copy(dp) #追加しないとき
        dp,p = p,dp
        v = A[i]
        s = ord(S[i]) - ord('a') + 1
        for j in range(27):
            #追加するとき
            if j == s: #同じ時はv個だけ最大が伸びる
                dp[s] += v
            else:
                dp[s] += p[j] * v
            dp[s] %= MOD
        #print(dp)
    ans = sum(dp)%MOD
    print(ans)



if __name__ == '__main__':
    main()
0