結果
問題 | No.1740 Alone 'a' |
ユーザー | kohei2019 |
提出日時 | 2023-06-12 01:05:26 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 694 bytes |
コンパイル時間 | 205 ms |
コンパイル使用メモリ | 82,200 KB |
実行使用メモリ | 94,324 KB |
最終ジャッジ日時 | 2024-06-11 03:55:40 |
合計ジャッジ時間 | 4,073 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
52,688 KB |
testcase_01 | AC | 39 ms
52,712 KB |
testcase_02 | AC | 38 ms
52,656 KB |
testcase_03 | AC | 89 ms
94,164 KB |
testcase_04 | AC | 89 ms
94,324 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 40 ms
51,840 KB |
testcase_09 | AC | 39 ms
52,224 KB |
testcase_10 | AC | 40 ms
52,352 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
ソースコード
N = int(input()) S = input() mod = 998244353 # dp[i][j] i個目まで見て(j=0未満未確定,j=1未満確定,j=2 aが一つ未満未確定,j=3 aが一つ未満確定) dp = [[0]*(4) for i in range(N+1)] dp[0][0] = 1 a0 = ord('a') for i in range(N): ord_s = ord(S[i])-a0 if ord_s == 0: dp[i+1][2] += dp[i][0] dp[i+1][1] += dp[i][1]*25 dp[i+1][3] += dp[i][1] else: dp[i+1][0] += dp[i][0] dp[i+1][1] += dp[i][0]*(ord_s-1)+dp[i][1]*25 dp[i+1][3] += dp[i][0] + dp[i][1] + dp[i][2]*(ord_s-1)+dp[i][3]*25 dp[i+1][2] += dp[i][2] dp[i+1][0] %= mod dp[i+1][1] %= mod dp[i+1][2] %= mod dp[i+1][3] %= mod print(dp[-1][3])