結果

問題 No.1646 Avoid Palindrome
ユーザー 沙耶花沙耶花
提出日時 2021-08-13 21:27:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,740 ms / 3,000 ms
コード長 691 bytes
コンパイル時間 4,647 ms
コンパイル使用メモリ 265,896 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-08 14:52:30
合計ジャッジ時間 55,636 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 710 ms
5,248 KB
testcase_05 AC 705 ms
5,248 KB
testcase_06 AC 679 ms
5,248 KB
testcase_07 AC 696 ms
5,248 KB
testcase_08 AC 702 ms
5,248 KB
testcase_09 AC 664 ms
5,248 KB
testcase_10 AC 676 ms
5,248 KB
testcase_11 AC 663 ms
5,248 KB
testcase_12 AC 704 ms
5,248 KB
testcase_13 AC 701 ms
5,248 KB
testcase_14 AC 2,528 ms
5,248 KB
testcase_15 AC 2,576 ms
5,248 KB
testcase_16 AC 2,512 ms
5,248 KB
testcase_17 AC 2,620 ms
5,248 KB
testcase_18 AC 2,549 ms
5,248 KB
testcase_19 AC 2,535 ms
5,248 KB
testcase_20 AC 2,580 ms
5,248 KB
testcase_21 AC 2,622 ms
5,248 KB
testcase_22 AC 2,529 ms
5,248 KB
testcase_23 AC 2,631 ms
5,248 KB
testcase_24 AC 2,733 ms
5,248 KB
testcase_25 AC 2,732 ms
5,248 KB
testcase_26 AC 2,736 ms
5,248 KB
testcase_27 AC 2,733 ms
5,248 KB
testcase_28 AC 2,740 ms
5,248 KB
testcase_29 AC 159 ms
5,248 KB
testcase_30 AC 160 ms
5,248 KB
testcase_31 AC 160 ms
5,248 KB
testcase_32 AC 162 ms
5,248 KB
testcase_33 AC 162 ms
5,248 KB
testcase_34 AC 2,736 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 1 ms
5,248 KB
testcase_42 AC 2 ms
5,248 KB
testcase_43 AC 161 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