結果

問題 No.1646 Avoid Palindrome
ユーザー kakel-sankakel-san
提出日時 2024-01-22 00:14:04
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 953 ms / 3,000 ms
コード長 1,686 bytes
コンパイル時間 7,153 ms
コンパイル使用メモリ 166,144 KB
実行使用メモリ 209,280 KB
最終ジャッジ日時 2024-09-28 06:17:45
合計ジャッジ時間 34,808 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
30,200 KB
testcase_01 AC 54 ms
30,464 KB
testcase_02 AC 55 ms
30,200 KB
testcase_03 AC 66 ms
31,336 KB
testcase_04 AC 723 ms
55,424 KB
testcase_05 AC 715 ms
55,168 KB
testcase_06 AC 690 ms
55,168 KB
testcase_07 AC 720 ms
55,168 KB
testcase_08 AC 725 ms
55,168 KB
testcase_09 AC 712 ms
55,168 KB
testcase_10 AC 711 ms
55,296 KB
testcase_11 AC 706 ms
55,168 KB
testcase_12 AC 735 ms
55,040 KB
testcase_13 AC 730 ms
55,168 KB
testcase_14 AC 858 ms
55,168 KB
testcase_15 AC 883 ms
54,912 KB
testcase_16 AC 879 ms
55,296 KB
testcase_17 AC 902 ms
55,160 KB
testcase_18 AC 882 ms
55,168 KB
testcase_19 AC 862 ms
55,168 KB
testcase_20 AC 866 ms
55,136 KB
testcase_21 AC 900 ms
54,912 KB
testcase_22 AC 862 ms
55,152 KB
testcase_23 AC 900 ms
55,168 KB
testcase_24 AC 949 ms
55,168 KB
testcase_25 AC 953 ms
55,296 KB
testcase_26 AC 937 ms
55,424 KB
testcase_27 AC 920 ms
55,168 KB
testcase_28 AC 906 ms
55,424 KB
testcase_29 AC 637 ms
55,168 KB
testcase_30 AC 659 ms
55,168 KB
testcase_31 AC 689 ms
55,288 KB
testcase_32 AC 652 ms
55,296 KB
testcase_33 AC 648 ms
55,296 KB
testcase_34 AC 925 ms
55,296 KB
testcase_35 AC 48 ms
29,440 KB
testcase_36 AC 48 ms
29,440 KB
testcase_37 AC 48 ms
29,400 KB
testcase_38 AC 47 ms
29,440 KB
testcase_39 AC 49 ms
29,400 KB
testcase_40 AC 51 ms
29,184 KB
testcase_41 AC 65 ms
30,336 KB
testcase_42 AC 53 ms
30,304 KB
testcase_43 AC 638 ms
209,280 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (86 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = NN;
        var s = ReadLine();
        if (n == 1)
        {
            if (s[0] == '?') WriteLine(26);
            else WriteLine(1);
            return;
        }
        if (n == 2)
        {
            if (s[0] == '?' && s[1] == '?') WriteLine(26 * 25);
            else if (s[0] == '?' || s[1] == '?') WriteLine(25);
            else if (s[0] == s[1]) WriteLine(0);
            else WriteLine(1);
            return;
        }
        var dp = new long[26 * 26];
        for (var i = 0; i < 26; ++i) for (var j = 0; j < 26; ++j)
        {
            if (i == j) continue;
            if ((s[0] == '?' || s[0] - 'a' == i) && (s[1] == '?' || s[1] - 'a' == j)) dp[i * 26 + j] = 1;
        }
        var mod = 998_244_353;
        for (var i = 2; i < n; ++i)
        {
            var sum = new long[26];
            for (var j = 0; j < dp.Length; ++j) sum[j % 26] = (sum[j % 26] + dp[j]) % mod;
            var ndp = new long[dp.Length];
            for (var j = 0; j < dp.Length; ++j)
            {
                var x = j / 26;
                var y = j % 26;
                if (x == y) continue;
                if (s[i] == '?' || s[i] - 'a' == y) ndp[j] = (sum[x] - dp[y * 26 + x] + mod) % mod;
            }
            dp = ndp;
        }
        WriteLine(dp.Sum() % mod);
    }
}
0