結果

問題 No.1481 Rotation ABC
ユーザー SSRSSSRS
提出日時 2021-04-16 20:45:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 1,429 bytes
コンパイル時間 1,838 ms
コンパイル使用メモリ 176,556 KB
実行使用メモリ 11,084 KB
最終ジャッジ日時 2024-07-02 23:16:21
合計ジャッジ時間 3,727 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 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 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 14 ms
8,704 KB
testcase_14 AC 16 ms
9,156 KB
testcase_15 AC 14 ms
8,576 KB
testcase_16 AC 12 ms
7,552 KB
testcase_17 AC 11 ms
7,296 KB
testcase_18 AC 16 ms
9,728 KB
testcase_19 AC 11 ms
7,168 KB
testcase_20 AC 12 ms
7,296 KB
testcase_21 AC 16 ms
9,464 KB
testcase_22 AC 11 ms
6,912 KB
testcase_23 AC 18 ms
10,496 KB
testcase_24 AC 18 ms
10,388 KB
testcase_25 AC 18 ms
10,496 KB
testcase_26 AC 19 ms
10,496 KB
testcase_27 AC 18 ms
10,496 KB
testcase_28 AC 33 ms
10,884 KB
testcase_29 AC 34 ms
10,956 KB
testcase_30 AC 31 ms
10,960 KB
testcase_31 AC 32 ms
10,952 KB
testcase_32 AC 32 ms
10,960 KB
testcase_33 AC 32 ms
10,952 KB
testcase_34 AC 33 ms
10,952 KB
testcase_35 AC 32 ms
10,952 KB
testcase_36 AC 32 ms
10,956 KB
testcase_37 AC 31 ms
10,960 KB
testcase_38 AC 32 ms
10,960 KB
testcase_39 AC 32 ms
10,832 KB
testcase_40 AC 32 ms
11,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const long long MOD = 998244353;
long long modpow(long long a, long long b){
	long long ans = 1;
	while (b > 0){
		if (b % 2 == 1){
			ans *= a;
			ans %= MOD;
		}
		a *= a;
		a %= MOD;
		b /= 2;
	}
	return ans;
}
long long modinv(long long a){
	return modpow(a, MOD - 2);
}
vector<long long> mf = {1};
long long modfact(int n){
  for (int i = mf.size(); i <= n; i++){
    long long next = mf.back() * i % MOD;
    mf.push_back(next);
  }
  return mf[n];
}
bool is_subseq(string S, string T){
  int N = S.size();
  int M = T.size();
  vector<vector<bool>> dp(N + 1, vector<bool>(M + 1, false));
  dp[0][0] = true;
  for (int i = 0; i < N; i++){
    for (int j = 0; j <= M; j++){
      if (dp[i][j]){
        dp[i + 1][j] = true;
        if (j < M){
          if (S[i] == T[j]){
            dp[i + 1][j + 1] = true;
          }
        }
      }
    }
  }
  return dp[N][M];
}
int main(){
  int N;
  cin >> N;
  string S;
  cin >> S;
  if (!is_subseq(S, "ABC") && !is_subseq(S, "BCA") && !is_subseq(S, "CAB")){
    cout << 1 << endl;
  } else {
    int A = 0, B = 0, C = 0;
    for (int i = 0; i < N; i++){
      if (S[i] == 'A'){
        A++;
      }
      if (S[i] == 'B'){
        B++;
      }
      if (S[i] == 'C'){
        C++;
      }
    }
    cout << (modfact(N) * modinv(modfact(A)) % MOD * modinv(modfact(B)) % MOD * modinv(modfact(C)) % MOD + MOD - N) % MOD << endl;
  }
}
0