結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 212 ms
125,696 KB
testcase_04 AC 204 ms
125,568 KB
testcase_05 AC 57 ms
72,080 KB
testcase_06 AC 62 ms
70,656 KB
testcase_07 AC 58 ms
63,232 KB
testcase_08 AC 41 ms
51,968 KB
testcase_09 AC 41 ms
51,840 KB
testcase_10 AC 41 ms
51,840 KB
testcase_11 AC 93 ms
85,120 KB
testcase_12 AC 176 ms
115,968 KB
testcase_13 AC 166 ms
113,456 KB
testcase_14 AC 191 ms
122,880 KB
testcase_15 AC 49 ms
66,176 KB
testcase_16 AC 173 ms
112,000 KB
testcase_17 AC 51 ms
66,048 KB
testcase_18 AC 79 ms
80,512 KB
testcase_19 AC 187 ms
115,840 KB
testcase_20 AC 127 ms
96,896 KB
testcase_21 AC 135 ms
104,448 KB
testcase_22 AC 148 ms
110,136 KB
testcase_23 AC 155 ms
109,996 KB
testcase_24 AC 120 ms
97,048 KB
testcase_25 AC 122 ms
97,152 KB
testcase_26 AC 136 ms
103,768 KB
testcase_27 AC 139 ms
105,856 KB
testcase_28 AC 129 ms
100,864 KB
testcase_29 AC 190 ms
123,224 KB
testcase_30 AC 141 ms
105,216 KB
testcase_31 AC 168 ms
111,400 KB
testcase_32 AC 133 ms
100,736 KB
testcase_33 AC 158 ms
111,004 KB
testcase_34 AC 75 ms
80,512 KB
testcase_35 AC 136 ms
100,224 KB
testcase_36 AC 115 ms
94,208 KB
testcase_37 AC 77 ms
80,768 KB
testcase_38 AC 115 ms
93,184 KB
testcase_39 AC 70 ms
78,700 KB
testcase_40 AC 108 ms
87,296 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