結果

問題 No.1646 Avoid Palindrome
ユーザー abc3abc3
提出日時 2021-08-14 18:25:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 691 bytes
コンパイル時間 4,689 ms
コンパイル使用メモリ 265,772 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-08 16:18:17
合計ジャッジ時間 55,162 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 3 ms
5,248 KB
testcase_04 AC 694 ms
5,248 KB
testcase_05 AC 689 ms
5,248 KB
testcase_06 AC 661 ms
5,248 KB
testcase_07 AC 685 ms
5,248 KB
testcase_08 AC 689 ms
5,248 KB
testcase_09 AC 653 ms
5,248 KB
testcase_10 AC 659 ms
5,248 KB
testcase_11 AC 653 ms
5,248 KB
testcase_12 AC 697 ms
5,248 KB
testcase_13 AC 691 ms
5,248 KB
testcase_14 AC 2,487 ms
5,248 KB
testcase_15 AC 2,540 ms
5,248 KB
testcase_16 AC 2,461 ms
5,248 KB
testcase_17 AC 2,649 ms
5,248 KB
testcase_18 TLE -
testcase_19 AC 2,453 ms
5,248 KB
testcase_20 AC 2,501 ms
5,248 KB
testcase_21 AC 2,576 ms
5,248 KB
testcase_22 AC 2,448 ms
5,248 KB
testcase_23 AC 2,557 ms
5,248 KB
testcase_24 AC 2,660 ms
5,248 KB
testcase_25 AC 2,696 ms
5,248 KB
testcase_26 AC 2,693 ms
5,248 KB
testcase_27 AC 2,651 ms
5,248 KB
testcase_28 AC 2,651 ms
5,248 KB
testcase_29 AC 159 ms
5,248 KB
testcase_30 AC 156 ms
5,248 KB
testcase_31 AC 156 ms
5,248 KB
testcase_32 AC 156 ms
5,248 KB
testcase_33 AC 158 ms
5,248 KB
testcase_34 AC 2,641 ms
5,248 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 2 ms
5,248 KB
testcase_38 AC 2 ms
5,248 KB
testcase_39 AC 2 ms
5,248 KB
testcase_40 AC 2 ms
5,248 KB
testcase_41 AC 2 ms
5,248 KB
testcase_42 AC 2 ms
5,248 KB
testcase_43 AC 158 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000001


int main(){
	
	int n;
	cin>>n;
	
	string s;
	cin>>s;
	
	vector dp(27,vector<mint>(27,0));
	dp[26][26] = 1;
	
	rep(i,n){
		vector ndp(27,vector<mint>(27,0));
		
		rep(j,27){
			rep(k,27){
				if(dp[j][k]==0)continue;
				rep(l,26){
					if(l==j||l==k)continue;
					if(s[i] != '?' && s[i] != 'a' + l)continue;
					ndp[k][l] += dp[j][k];
				}
				
			}
		}
		swap(dp,ndp);
	}
	
	mint ans = 0;
	rep(i,27){
		rep(j,27)ans += dp[i][j];
	}
	
	cout<<ans.val()<<endl;
	
	return 0;
}
0