結果

問題 No.1740 Alone 'a'
ユーザー se1ka2se1ka2
提出日時 2021-11-12 22:04:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 660 bytes
コンパイル時間 541 ms
コンパイル使用メモリ 67,172 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-04 08:50:24
合計ジャッジ時間 1,509 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 9 ms
6,944 KB
testcase_04 AC 8 ms
6,940 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 7 ms
6,944 KB
testcase_14 WA -
testcase_15 AC 1 ms
6,940 KB
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 AC 6 ms
6,940 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 5 ms
6,940 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 3 ms
6,944 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
typedef long long ll;

const ll MOD = 998244353;

ll dp[4];

int main()
{
    int n;
    string s;
    cin >> n >> s;
    dp[0] = 1;
    for(int i = 0; i < n; i++){
        ll d[4];
        if(s[i] == 'a'){
            d[0] = 0;
            d[1] = dp[0];
            d[2] = dp[2] * 25 % MOD;
            d[3] = dp[3] * 25 % MOD;
        }
        else{
            d[0] = dp[0];
            d[1] = dp[1];
            d[2] = (dp[0] * (s[i] - 'b') + dp[2] * 25) % MOD;
            d[3] = (dp[0] + dp[1] * (s[i] - 'b') + dp[2] + dp[3] * 25) % MOD;
        }
        swap(dp, d);
    }
    cout << (dp[3]) % MOD << endl;
}
0