結果

問題 No.1740 Alone 'a'
ユーザー prussian_coderprussian_coder
提出日時 2022-03-23 22:18:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 342 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,032 KB
最終ジャッジ日時 2024-10-12 01:26:27
合計ジャッジ時間 4,429 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 42 ms
51,712 KB
testcase_03 AC 76 ms
76,032 KB
testcase_04 AC 77 ms
75,776 KB
testcase_05 AC 56 ms
62,848 KB
testcase_06 AC 57 ms
63,232 KB
testcase_07 AC 43 ms
52,608 KB
testcase_08 AC 41 ms
51,840 KB
testcase_09 AC 41 ms
51,840 KB
testcase_10 AC 42 ms
51,712 KB
testcase_11 AC 64 ms
72,192 KB
testcase_12 AC 76 ms
76,032 KB
testcase_13 AC 75 ms
75,904 KB
testcase_14 AC 78 ms
75,776 KB
testcase_15 AC 52 ms
60,544 KB
testcase_16 AC 76 ms
75,904 KB
testcase_17 AC 53 ms
60,672 KB
testcase_18 AC 61 ms
68,736 KB
testcase_19 AC 76 ms
75,904 KB
testcase_20 AC 70 ms
75,776 KB
testcase_21 AC 73 ms
75,776 KB
testcase_22 AC 75 ms
76,032 KB
testcase_23 AC 74 ms
75,904 KB
testcase_24 AC 70 ms
75,520 KB
testcase_25 AC 71 ms
75,904 KB
testcase_26 AC 73 ms
75,776 KB
testcase_27 AC 74 ms
75,520 KB
testcase_28 AC 73 ms
75,776 KB
testcase_29 AC 78 ms
76,032 KB
testcase_30 AC 73 ms
75,776 KB
testcase_31 AC 74 ms
75,904 KB
testcase_32 AC 72 ms
75,904 KB
testcase_33 AC 75 ms
75,776 KB
testcase_34 AC 61 ms
70,144 KB
testcase_35 AC 72 ms
75,648 KB
testcase_36 AC 71 ms
75,904 KB
testcase_37 AC 61 ms
70,272 KB
testcase_38 AC 70 ms
75,776 KB
testcase_39 AC 56 ms
64,000 KB
testcase_40 AC 68 ms
75,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
S=input()
mod=998244353
A=[0,0]
B=[1,0]
for i in range(N):
	AA=A.copy()
	BB=B.copy()
	A= [0,0]
	B= [0,0]
	A[1] += AA[1]*25 + AA[0]
	A[0] += AA[0]*25
	if S[i]!="a":
		A[1] += BB[1]*(ord(S[i])-98) + BB[0]
		A[0] += BB[0]*(ord(S[i])-98)
		B[1] += BB[1]
		B[0] += BB[0]
	else:
		B[1]+=BB[0]
	A[0]%=mod
	A[1]%=mod

		
		
print(A[1])
0