結果

問題 No.1740 Alone 'a'
ユーザー Eki1009Eki1009
提出日時 2021-11-12 22:09:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 894 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,020 KB
実行使用メモリ 78,380 KB
最終ジャッジ日時 2024-11-25 18:56:42
合計ジャッジ時間 5,767 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,224 KB
testcase_01 AC 35 ms
53,024 KB
testcase_02 AC 35 ms
53,368 KB
testcase_03 AC 167 ms
78,236 KB
testcase_04 AC 174 ms
77,972 KB
testcase_05 AC 74 ms
76,200 KB
testcase_06 AC 74 ms
76,636 KB
testcase_07 AC 60 ms
71,136 KB
testcase_08 AC 37 ms
52,512 KB
testcase_09 AC 36 ms
53,384 KB
testcase_10 AC 34 ms
52,540 KB
testcase_11 AC 89 ms
76,508 KB
testcase_12 AC 152 ms
78,000 KB
testcase_13 AC 152 ms
77,684 KB
testcase_14 AC 170 ms
78,328 KB
testcase_15 AC 62 ms
73,468 KB
testcase_16 AC 148 ms
77,416 KB
testcase_17 AC 63 ms
74,376 KB
testcase_18 AC 85 ms
76,452 KB
testcase_19 AC 154 ms
77,656 KB
testcase_20 AC 120 ms
77,244 KB
testcase_21 AC 133 ms
77,216 KB
testcase_22 AC 143 ms
77,292 KB
testcase_23 AC 150 ms
77,544 KB
testcase_24 AC 115 ms
76,700 KB
testcase_25 AC 116 ms
77,032 KB
testcase_26 AC 134 ms
77,152 KB
testcase_27 AC 133 ms
77,504 KB
testcase_28 AC 126 ms
77,096 KB
testcase_29 AC 173 ms
78,380 KB
testcase_30 AC 137 ms
77,044 KB
testcase_31 AC 148 ms
77,552 KB
testcase_32 AC 125 ms
76,988 KB
testcase_33 AC 143 ms
77,456 KB
testcase_34 AC 86 ms
76,592 KB
testcase_35 AC 124 ms
77,020 KB
testcase_36 AC 113 ms
76,896 KB
testcase_37 AC 89 ms
76,316 KB
testcase_38 AC 106 ms
77,116 KB
testcase_39 AC 76 ms
76,368 KB
testcase_40 AC 96 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
n = int(input())
S = [ord(s)-ord("a") for s in input()]
dp = [[0]*2 for _ in range(2)]
dp[0][0] = 1
for s in S:
    ndp = [[0]*2 for _ in range(2)]
    for j0 in range(2):
        for k0 in range(2):
            for j1 in range(2):
                for k1 in range(2):
                    if j0 > j1 or k0 > k1:
                        continue
                    if k0 < k1:
                        if not (j0 or (j1 ^ (s == 0))):
                            continue
                        c = 1
                    else:
                        if (j0,j1) == (0,0):
                            c = s > 0
                        elif (j0,j1) == (0,1):
                            c = max(s-1,0)
                        else:
                            c = 25
                    ndp[j1][k1] += dp[j0][k0]*c
                    ndp[j1][k1] %= mod
    dp = ndp
print(dp[1][1])
0