結果

問題 No.1740 Alone 'a'
ユーザー umezoumezo
提出日時 2021-11-12 22:43:08
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 761 bytes
コンパイル時間 1,850 ms
コンパイル使用メモリ 201,356 KB
実行使用メモリ 9,920 KB
最終ジャッジ日時 2024-11-25 20:24:03
合計ジャッジ時間 4,354 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 104 ms
9,856 KB
testcase_04 AC 100 ms
9,920 KB
testcase_05 AC 5 ms
5,248 KB
testcase_06 AC 4 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 17 ms
5,248 KB
testcase_12 AC 66 ms
8,692 KB
testcase_13 AC 64 ms
8,320 KB
testcase_14 AC 77 ms
9,596 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 61 ms
8,192 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 12 ms
5,248 KB
testcase_19 AC 67 ms
8,704 KB
testcase_20 AC 36 ms
6,144 KB
testcase_21 AC 49 ms
7,168 KB
testcase_22 AC 58 ms
7,936 KB
testcase_23 AC 57 ms
8,064 KB
testcase_24 AC 37 ms
6,272 KB
testcase_25 AC 36 ms
6,400 KB
testcase_26 AC 48 ms
7,168 KB
testcase_27 AC 52 ms
7,552 KB
testcase_28 AC 43 ms
6,656 KB
testcase_29 AC 79 ms
9,728 KB
testcase_30 AC 49 ms
7,424 KB
testcase_31 AC 60 ms
8,192 KB
testcase_32 AC 43 ms
6,912 KB
testcase_33 AC 60 ms
8,064 KB
testcase_34 AC 14 ms
5,248 KB
testcase_35 AC 41 ms
6,656 KB
testcase_36 AC 35 ms
6,144 KB
testcase_37 AC 14 ms
5,248 KB
testcase_38 AC 29 ms
5,632 KB
testcase_39 AC 6 ms
5,248 KB
testcase_40 AC 19 ms
5,248 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