結果

問題 No.1740 Alone 'a'
ユーザー umezoumezo
提出日時 2021-11-12 22:43:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 761 bytes
コンパイル時間 1,757 ms
コンパイル使用メモリ 202,500 KB
実行使用メモリ 9,924 KB
最終ジャッジ日時 2024-05-04 10:14:33
合計ジャッジ時間 4,125 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 92 ms
9,792 KB
testcase_04 AC 92 ms
9,924 KB
testcase_05 AC 5 ms
5,376 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 16 ms
5,376 KB
testcase_12 AC 64 ms
8,564 KB
testcase_13 AC 61 ms
8,448 KB
testcase_14 AC 74 ms
9,592 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 60 ms
8,064 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 11 ms
5,376 KB
testcase_19 AC 69 ms
8,696 KB
testcase_20 AC 37 ms
6,016 KB
testcase_21 AC 47 ms
7,168 KB
testcase_22 AC 55 ms
7,936 KB
testcase_23 AC 54 ms
8,064 KB
testcase_24 AC 34 ms
6,272 KB
testcase_25 AC 34 ms
6,400 KB
testcase_26 AC 45 ms
7,168 KB
testcase_27 AC 47 ms
7,424 KB
testcase_28 AC 40 ms
6,784 KB
testcase_29 AC 76 ms
9,728 KB
testcase_30 AC 47 ms
7,424 KB
testcase_31 AC 58 ms
8,064 KB
testcase_32 AC 42 ms
6,784 KB
testcase_33 AC 56 ms
7,936 KB
testcase_34 AC 14 ms
5,376 KB
testcase_35 AC 39 ms
6,656 KB
testcase_36 AC 33 ms
6,016 KB
testcase_37 AC 14 ms
5,376 KB
testcase_38 AC 28 ms
5,632 KB
testcase_39 AC 6 ms
5,376 KB
testcase_40 AC 18 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;

const int MOD=998244353;
ll dp[200200][2][2];

int main() {
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  string s;
  int n;
  cin>>n>>s;
  
  int cnt=0;
  rep(i,n){
    if(s[i]=='a') cnt++;
  }

  dp[0][0][0]=1;
  rep(i,n){
    int Ni=s[i]-'a';
    rep(j,2) rep(k,2) rep(x,26){
      int j2=j,k2=k;

      if(x==0) ++j2;
      if(j2>1) continue;

      if(!k && (x>Ni)) continue;
      if(x<Ni) k2=1;

      dp[i+1][j2][k2]=(dp[i+1][j2][k2]+dp[i][j][k])%MOD;
    }
  }
  if(cnt==1) cout<<(dp[n][1][0]+dp[n][1][1]-1+MOD)%MOD<<endl;
  else cout<<(dp[n][1][0]+dp[n][1][1])%MOD<<endl;
  
  return 0;
}
0