結果

問題 No.1740 Alone 'a'
ユーザー HydruHydru
提出日時 2021-11-13 14:57:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 185 ms / 2,000 ms
コード長 615 bytes
コンパイル時間 906 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 125,656 KB
最終ジャッジ日時 2024-11-27 11:04:51
合計ジャッジ時間 6,335 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,096 KB
testcase_01 AC 34 ms
52,096 KB
testcase_02 AC 34 ms
52,224 KB
testcase_03 AC 184 ms
125,656 KB
testcase_04 AC 182 ms
125,184 KB
testcase_05 AC 54 ms
71,936 KB
testcase_06 AC 53 ms
71,168 KB
testcase_07 AC 46 ms
63,104 KB
testcase_08 AC 35 ms
52,096 KB
testcase_09 AC 35 ms
52,096 KB
testcase_10 AC 34 ms
51,968 KB
testcase_11 AC 80 ms
85,052 KB
testcase_12 AC 161 ms
116,096 KB
testcase_13 AC 153 ms
113,280 KB
testcase_14 AC 177 ms
122,880 KB
testcase_15 AC 50 ms
65,408 KB
testcase_16 AC 151 ms
111,960 KB
testcase_17 AC 50 ms
65,664 KB
testcase_18 AC 69 ms
80,384 KB
testcase_19 AC 158 ms
115,932 KB
testcase_20 AC 113 ms
96,768 KB
testcase_21 AC 127 ms
104,192 KB
testcase_22 AC 148 ms
109,952 KB
testcase_23 AC 148 ms
109,932 KB
testcase_24 AC 113 ms
97,152 KB
testcase_25 AC 113 ms
97,536 KB
testcase_26 AC 131 ms
104,140 KB
testcase_27 AC 138 ms
105,728 KB
testcase_28 AC 124 ms
100,608 KB
testcase_29 AC 185 ms
123,088 KB
testcase_30 AC 133 ms
105,344 KB
testcase_31 AC 151 ms
111,104 KB
testcase_32 AC 121 ms
100,992 KB
testcase_33 AC 147 ms
110,784 KB
testcase_34 AC 70 ms
80,408 KB
testcase_35 AC 127 ms
100,192 KB
testcase_36 AC 103 ms
93,952 KB
testcase_37 AC 74 ms
80,256 KB
testcase_38 AC 105 ms
93,192 KB
testcase_39 AC 67 ms
78,592 KB
testcase_40 AC 86 ms
86,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
S=input()
mod=998244353
DP=[[[0]*2 for _ in range(2)] for _ in range(N+1)]

DP[0][0][0]=1
for i in range(N):
    DP[i+1][1][1]+=25*DP[i][1][1]
    DP[i+1][0][1]+=25*DP[i][0][1]

    DP[i+1][1][1]+=DP[i][0][1]
    
    now=ord(S[i])-ord("a")

    if now!=0:
        DP[i+1][1][1]+=DP[i][0][0]
        DP[i+1][1][1]+=(now-1)*DP[i][1][0]
        DP[i+1][0][1]+=(now-1)*DP[i][0][0]
        DP[i+1][0][0]+=DP[i][0][0]
        DP[i+1][1][0]+=DP[i][1][0]
    else:
        DP[i+1][1][0]+=DP[i][0][0]
    
    for j in range(2):
        for k in range(2):
            DP[i+1][j][k]%=mod

print(DP[N][1][1])

0