結果

問題 No.1740 Alone 'a'
ユーザー SSRSSSRS
提出日時 2021-11-12 21:30:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 836 bytes
コンパイル時間 1,856 ms
コンパイル使用メモリ 174,176 KB
実行使用メモリ 33,108 KB
最終ジャッジ日時 2024-05-04 05:00:18
合計ジャッジ時間 4,949 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 135 ms
33,104 KB
testcase_04 AC 138 ms
33,108 KB
testcase_05 AC 6 ms
6,940 KB
testcase_06 AC 6 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 24 ms
8,704 KB
testcase_12 AC 99 ms
27,204 KB
testcase_13 AC 91 ms
25,816 KB
testcase_14 AC 116 ms
31,688 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 88 ms
25,064 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 16 ms
6,944 KB
testcase_19 AC 94 ms
27,320 KB
testcase_20 AC 54 ms
15,744 KB
testcase_21 AC 72 ms
20,352 KB
testcase_22 AC 84 ms
23,808 KB
testcase_23 AC 83 ms
23,700 KB
testcase_24 AC 55 ms
15,872 KB
testcase_25 AC 57 ms
16,000 KB
testcase_26 AC 71 ms
19,968 KB
testcase_27 AC 81 ms
21,248 KB
testcase_28 AC 66 ms
18,176 KB
testcase_29 AC 111 ms
31,624 KB
testcase_30 AC 77 ms
20,864 KB
testcase_31 AC 87 ms
24,536 KB
testcase_32 AC 66 ms
18,376 KB
testcase_33 AC 87 ms
24,080 KB
testcase_34 AC 19 ms
7,424 KB
testcase_35 AC 63 ms
17,664 KB
testcase_36 AC 51 ms
15,360 KB
testcase_37 AC 19 ms
7,680 KB
testcase_38 AC 43 ms
13,440 KB
testcase_39 AC 8 ms
6,940 KB
testcase_40 AC 27 ms
9,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const long long MOD = 998244353;
int main(){
  int N;
  cin >> N;
  string S;
  cin >> S;
  vector<vector<vector<long long>>> dp(N + 1, vector<vector<long long>>(2, vector<long long>(2, 0)));
  dp[0][0][0] = 1;
  for (int i = 0; i < N; i++){
    for (int j = 0; j < 2; j++){
      for (int k = 0; k < 2; k++){
        for (int l = 0; l < 26; l++){
          if (j == 0 && l > S[i] - 'a'){
            continue;
          }
          if (k == 1 && l == 0){
            continue;
          }
          int j2 = j;
          if (l < S[i] - 'a'){
            j2 = 1;
          }
          int k2 = k;
          if (l == 0){
            k2++;
          }
          dp[i + 1][j2][k2] += dp[i][j][k];
          dp[i + 1][j2][k2] %= MOD;
        }
      }
    }
  }
  cout << dp[N][1][1] << endl;
}
0