結果

問題 No.1740 Alone 'a'
ユーザー mrngmrng
提出日時 2021-11-19 22:05:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 220 ms / 2,000 ms
コード長 559 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 125,684 KB
最終ジャッジ日時 2024-06-10 09:05:44
合計ジャッジ時間 6,741 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,080 KB
testcase_01 AC 37 ms
53,876 KB
testcase_02 AC 37 ms
53,084 KB
testcase_03 AC 210 ms
125,684 KB
testcase_04 AC 214 ms
125,468 KB
testcase_05 AC 61 ms
73,996 KB
testcase_06 AC 59 ms
71,636 KB
testcase_07 AC 49 ms
64,316 KB
testcase_08 AC 37 ms
53,508 KB
testcase_09 AC 37 ms
53,440 KB
testcase_10 AC 37 ms
52,692 KB
testcase_11 AC 91 ms
85,172 KB
testcase_12 AC 192 ms
115,796 KB
testcase_13 AC 192 ms
113,512 KB
testcase_14 AC 220 ms
122,836 KB
testcase_15 AC 58 ms
66,188 KB
testcase_16 AC 181 ms
111,920 KB
testcase_17 AC 59 ms
68,324 KB
testcase_18 AC 78 ms
80,476 KB
testcase_19 AC 185 ms
115,708 KB
testcase_20 AC 128 ms
96,680 KB
testcase_21 AC 154 ms
104,384 KB
testcase_22 AC 168 ms
110,476 KB
testcase_23 AC 171 ms
109,796 KB
testcase_24 AC 127 ms
96,880 KB
testcase_25 AC 128 ms
97,044 KB
testcase_26 AC 153 ms
103,704 KB
testcase_27 AC 162 ms
105,948 KB
testcase_28 AC 142 ms
101,012 KB
testcase_29 AC 212 ms
122,972 KB
testcase_30 AC 154 ms
105,008 KB
testcase_31 AC 174 ms
111,484 KB
testcase_32 AC 140 ms
100,748 KB
testcase_33 AC 174 ms
110,856 KB
testcase_34 AC 81 ms
80,564 KB
testcase_35 AC 142 ms
100,440 KB
testcase_36 AC 124 ms
96,024 KB
testcase_37 AC 80 ms
80,448 KB
testcase_38 AC 124 ms
92,932 KB
testcase_39 AC 72 ms
79,012 KB
testcase_40 AC 97 ms
86,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()
dp = [[[0,0] for _ in range(2)]for _ in range(n+1)]
dp[0][0][0] = 1
mod = 998244353
for i in range(n):
	dp[i+1][1][1] = dp[i][1][1]*25
	dp[i+1][0][1] = dp[i][0][1]*25
	dp[i+1][1][1] += dp[i][0][1]
	d = ord(s[i])-ord('a')-1
	dp[i+1][1][1] += dp[i][1][0]*max(0,d)
	dp[i+1][0][1] += dp[i][0][0]*max(0,d)
	if s[i]=='a':
		dp[i+1][1][0] += dp[i][0][0]
	else:
		dp[i+1][0][0] += dp[i][0][0]
		dp[i+1][1][0] += dp[i][1][0]
		dp[i+1][1][1] += 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