結果

問題 No.1740 Alone 'a'
ユーザー Eki1009Eki1009
提出日時 2021-11-12 22:09:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 894 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 78,608 KB
最終ジャッジ日時 2024-05-04 09:01:55
合計ジャッジ時間 5,385 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,164 KB
testcase_01 AC 32 ms
53,216 KB
testcase_02 AC 32 ms
52,136 KB
testcase_03 AC 157 ms
78,456 KB
testcase_04 AC 161 ms
78,112 KB
testcase_05 AC 76 ms
76,652 KB
testcase_06 AC 75 ms
76,556 KB
testcase_07 AC 63 ms
70,040 KB
testcase_08 AC 33 ms
53,140 KB
testcase_09 AC 32 ms
52,460 KB
testcase_10 AC 32 ms
52,592 KB
testcase_11 AC 83 ms
76,888 KB
testcase_12 AC 147 ms
78,008 KB
testcase_13 AC 143 ms
77,688 KB
testcase_14 AC 164 ms
78,252 KB
testcase_15 AC 57 ms
73,080 KB
testcase_16 AC 138 ms
77,468 KB
testcase_17 AC 59 ms
74,036 KB
testcase_18 AC 83 ms
77,068 KB
testcase_19 AC 150 ms
78,036 KB
testcase_20 AC 109 ms
77,160 KB
testcase_21 AC 123 ms
77,120 KB
testcase_22 AC 137 ms
77,764 KB
testcase_23 AC 140 ms
77,924 KB
testcase_24 AC 113 ms
77,312 KB
testcase_25 AC 111 ms
77,488 KB
testcase_26 AC 121 ms
77,460 KB
testcase_27 AC 127 ms
77,420 KB
testcase_28 AC 117 ms
76,984 KB
testcase_29 AC 164 ms
78,608 KB
testcase_30 AC 124 ms
77,076 KB
testcase_31 AC 136 ms
77,636 KB
testcase_32 AC 123 ms
77,068 KB
testcase_33 AC 136 ms
77,768 KB
testcase_34 AC 82 ms
76,400 KB
testcase_35 AC 112 ms
77,628 KB
testcase_36 AC 106 ms
77,112 KB
testcase_37 AC 80 ms
76,936 KB
testcase_38 AC 100 ms
77,148 KB
testcase_39 AC 72 ms
76,688 KB
testcase_40 AC 94 ms
76,948 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