結果

問題 No.2019 Digits Filling for All Substrings
ユーザー kakel-sankakel-san
提出日時 2023-11-03 21:11:19
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 1,441 bytes
コンパイル時間 16,359 ms
コンパイル使用メモリ 165,956 KB
実行使用メモリ 190,880 KB
最終ジャッジ日時 2024-09-25 18:51:30
合計ジャッジ時間 12,743 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
28,288 KB
testcase_01 AC 50 ms
28,920 KB
testcase_02 AC 50 ms
28,544 KB
testcase_03 AC 48 ms
28,672 KB
testcase_04 AC 81 ms
37,376 KB
testcase_05 AC 76 ms
34,924 KB
testcase_06 AC 78 ms
34,432 KB
testcase_07 AC 73 ms
33,408 KB
testcase_08 AC 93 ms
40,808 KB
testcase_09 AC 97 ms
40,684 KB
testcase_10 AC 96 ms
41,088 KB
testcase_11 AC 99 ms
41,216 KB
testcase_12 AC 98 ms
40,832 KB
testcase_13 AC 104 ms
40,684 KB
testcase_14 AC 49 ms
28,928 KB
testcase_15 AC 48 ms
28,672 KB
testcase_16 AC 64 ms
30,848 KB
testcase_17 AC 51 ms
28,896 KB
testcase_18 AC 48 ms
28,416 KB
testcase_19 AC 47 ms
28,920 KB
testcase_20 AC 47 ms
28,928 KB
testcase_21 AC 47 ms
28,800 KB
testcase_22 AC 46 ms
28,396 KB
testcase_23 AC 46 ms
28,672 KB
testcase_24 AC 87 ms
34,816 KB
testcase_25 AC 98 ms
36,480 KB
testcase_26 AC 76 ms
33,152 KB
testcase_27 AC 65 ms
30,848 KB
testcase_28 AC 64 ms
30,848 KB
testcase_29 AC 86 ms
36,736 KB
testcase_30 AC 101 ms
38,764 KB
testcase_31 AC 100 ms
38,656 KB
testcase_32 AC 74 ms
32,856 KB
testcase_33 AC 86 ms
190,880 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (128 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 double[] NList => ReadLine().Split().Select(double.Parse).ToArray();
    static double[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = NN;
        var s = ReadLine();
        var mod = 998_244_353;
        var ans = 0L;
        var dp = new long[3];
        for (var i = 0; i < n; ++i)
        {
            var ndp = new long[3];
            if (s[i] == '?')
            {
                ndp[0] += 4;
                ndp[1] += 3;
                ndp[2] += 3;
                for (var j = 0; j < 3; ++j)
                {
                    ndp[j] = (ndp[j] + dp[j] * 4 % mod) % mod;
                    ndp[(j + 1) % 3] = (ndp[(j + 1) % 3] + dp[j] * 3 % mod) % mod;
                    ndp[(j + 2) % 3] = (ndp[(j + 2) % 3] + dp[j] * 3 % mod) % mod;
                }
            }
            else
            {
                ndp[(s[i] - '0') % 3] += 1;
                for (var j = 0; j < 3; ++j) ndp[(j + s[i] - '0') % 3] = (ndp[(j + s[i] - '0') % 3] + dp[j]) % mod;
            }
            ans = (ans + ndp[0]) % mod;
            dp = ndp;
        }
        WriteLine(ans);
    }
}
0