結果
問題 | No.1646 Avoid Palindrome |
ユーザー | trineutron |
提出日時 | 2021-08-13 21:47:04 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,316 bytes |
コンパイル時間 | 3,052 ms |
コンパイル使用メモリ | 255,200 KB |
実行使用メモリ | 196,992 KB |
最終ジャッジ日時 | 2024-10-03 18:19:28 |
合計ジャッジ時間 | 63,858 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,496 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 4 ms
5,248 KB |
testcase_04 | AC | 2,139 ms
193,664 KB |
testcase_05 | AC | 2,130 ms
193,536 KB |
testcase_06 | AC | 2,057 ms
187,008 KB |
testcase_07 | AC | 2,135 ms
193,536 KB |
testcase_08 | AC | 2,138 ms
195,456 KB |
testcase_09 | AC | 2,033 ms
185,856 KB |
testcase_10 | AC | 2,078 ms
190,464 KB |
testcase_11 | AC | 2,029 ms
185,216 KB |
testcase_12 | AC | 2,135 ms
193,280 KB |
testcase_13 | AC | 2,145 ms
195,456 KB |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
ソースコード
#include <bits/stdc++.h> #include <atcoder/modint> using namespace std; using namespace atcoder; using mint = modint998244353; int main() { int n; string s; cin >> n >> s; vector dp(n + 1, vector(27, vector<mint>(27))); dp.at(0).at(26).at(26) = 1; for (int i = 0; i < n; i++) { for (int j = 0; j < 27; j++) { for (int k = 0; k < 27; k++) { if (s.at(i) == '?') { for (int l = 0; l < 26; l++) { if (l == j or l == k) { continue; } dp.at(i + 1).at(k).at(l) += dp.at(i).at(j).at(k); } } else { int l = s.at(i) - 'a'; if (l == j or l == k) { continue; } dp.at(i + 1).at(k).at(l) += dp.at(i).at(j).at(k); } } } } mint ans = 0; for (int i = 0; i < 27; i++) { for (int j = 0; j < 27; j++) { ans += dp.at(n).at(i).at(j); } } cout << ans.val() << endl; return 0; }