結果

問題 No.1740 Alone 'a'
ユーザー googol_S0googol_S0
提出日時 2021-11-12 21:34:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 472 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 104,888 KB
最終ジャッジ日時 2024-05-04 07:35:52
合計ジャッジ時間 4,810 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,084 KB
testcase_01 AC 39 ms
52,204 KB
testcase_02 AC 39 ms
52,492 KB
testcase_03 AC 125 ms
104,888 KB
testcase_04 AC 126 ms
104,848 KB
testcase_05 AC 51 ms
64,692 KB
testcase_06 AC 53 ms
64,304 KB
testcase_07 AC 46 ms
62,664 KB
testcase_08 AC 38 ms
53,548 KB
testcase_09 AC 37 ms
53,044 KB
testcase_10 AC 36 ms
52,028 KB
testcase_11 AC 57 ms
72,036 KB
testcase_12 AC 109 ms
97,420 KB
testcase_13 AC 89 ms
85,680 KB
testcase_14 AC 120 ms
101,424 KB
testcase_15 AC 49 ms
63,064 KB
testcase_16 AC 89 ms
86,120 KB
testcase_17 AC 48 ms
63,340 KB
testcase_18 AC 55 ms
69,344 KB
testcase_19 AC 109 ms
97,416 KB
testcase_20 AC 84 ms
87,836 KB
testcase_21 AC 86 ms
86,792 KB
testcase_22 AC 89 ms
86,448 KB
testcase_23 AC 90 ms
86,304 KB
testcase_24 AC 85 ms
87,960 KB
testcase_25 AC 85 ms
88,076 KB
testcase_26 AC 86 ms
87,188 KB
testcase_27 AC 86 ms
86,568 KB
testcase_28 AC 84 ms
87,608 KB
testcase_29 AC 118 ms
101,296 KB
testcase_30 AC 86 ms
86,800 KB
testcase_31 AC 89 ms
86,104 KB
testcase_32 AC 87 ms
87,352 KB
testcase_33 AC 89 ms
86,236 KB
testcase_34 AC 58 ms
71,012 KB
testcase_35 AC 87 ms
87,608 KB
testcase_36 AC 84 ms
87,728 KB
testcase_37 AC 55 ms
70,660 KB
testcase_38 AC 79 ms
85,864 KB
testcase_39 AC 53 ms
65,580 KB
testcase_40 AC 58 ms
73,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
S=list(input())
mod=998244353
for i in range(N):
  S[i]=ord(S[i])-ord('a')
DP=[[0]*4 for i in range(N+1)]
DP[0][0]=1
for i in range(N):
  DP[i+1][3]+=DP[i][3]*25
  DP[i+1][2]+=DP[i][2]*25
  DP[i+1][3]+=DP[i][2]
  if S[i]==0:
    DP[i+1][1]+=DP[i][0]
  else:
    DP[i+1][0]+=DP[i][0]
    DP[i+1][3]+=DP[i][0]
    DP[i+1][2]+=DP[i][0]*(S[i]-1)
    DP[i+1][1]+=DP[i][1]
    DP[i+1][3]+=DP[i][1]*(S[i]-1)
  for j in range(4):
    DP[i+1][j]%=mod
print(DP[N][3])
0