結果

問題 No.2279 OR Insertion
ユーザー kakel-sankakel-san
提出日時 2023-12-07 23:27:49
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 725 ms / 2,000 ms
コード長 1,376 bytes
コンパイル時間 9,785 ms
コンパイル使用メモリ 166,212 KB
実行使用メモリ 311,580 KB
最終ジャッジ日時 2024-09-27 02:25:54
合計ジャッジ時間 24,922 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
28,524 KB
testcase_01 AC 47 ms
28,800 KB
testcase_02 AC 97 ms
44,928 KB
testcase_03 AC 79 ms
36,736 KB
testcase_04 AC 424 ms
143,872 KB
testcase_05 AC 64 ms
31,616 KB
testcase_06 AC 205 ms
75,392 KB
testcase_07 AC 214 ms
79,616 KB
testcase_08 AC 104 ms
45,824 KB
testcase_09 AC 272 ms
95,352 KB
testcase_10 AC 432 ms
140,544 KB
testcase_11 AC 90 ms
42,240 KB
testcase_12 AC 324 ms
116,588 KB
testcase_13 AC 71 ms
34,944 KB
testcase_14 AC 71 ms
36,480 KB
testcase_15 AC 235 ms
84,224 KB
testcase_16 AC 62 ms
31,104 KB
testcase_17 AC 186 ms
74,624 KB
testcase_18 AC 310 ms
105,472 KB
testcase_19 AC 372 ms
128,896 KB
testcase_20 AC 220 ms
80,384 KB
testcase_21 AC 176 ms
66,560 KB
testcase_22 AC 47 ms
28,672 KB
testcase_23 AC 48 ms
28,644 KB
testcase_24 AC 47 ms
28,640 KB
testcase_25 AC 46 ms
28,800 KB
testcase_26 AC 47 ms
28,672 KB
testcase_27 AC 47 ms
28,408 KB
testcase_28 AC 48 ms
28,544 KB
testcase_29 AC 47 ms
28,928 KB
testcase_30 AC 48 ms
28,524 KB
testcase_31 AC 46 ms
28,800 KB
testcase_32 AC 501 ms
156,928 KB
testcase_33 AC 495 ms
157,056 KB
testcase_34 AC 492 ms
157,184 KB
testcase_35 AC 489 ms
156,908 KB
testcase_36 AC 473 ms
157,184 KB
testcase_37 AC 482 ms
157,184 KB
testcase_38 AC 494 ms
157,024 KB
testcase_39 AC 511 ms
156,928 KB
testcase_40 AC 522 ms
156,928 KB
testcase_41 AC 516 ms
156,900 KB
testcase_42 AC 695 ms
157,056 KB
testcase_43 AC 669 ms
156,928 KB
testcase_44 AC 664 ms
156,672 KB
testcase_45 AC 297 ms
157,056 KB
testcase_46 AC 289 ms
157,056 KB
testcase_47 AC 283 ms
157,024 KB
testcase_48 AC 725 ms
156,964 KB
testcase_49 AC 253 ms
311,580 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (88 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();
    static int[][] 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 a = new long[n];
        a[0] = 1;
        for (var i = 1; i < n; ++i) a[i] = a[i - 1] * 2 % mod;
        var dp = new long[n][];
        for (var i = 0; i < n; ++i)
        {
            dp[i] = new long[n];
            if (i == 0)
            {
                dp[i][0] = s[0] - '0';
            }
            else
            {
                for (var j = 0; j <= i; ++j)
                {
                    if (s[i - j] == '0') dp[i][j] = dp[i - 1][j];
                    else dp[i][j] = (a[i - j] + dp[i - 1][j] - (i > j ? dp[i - j - 1][j] : 0) + mod) % mod;
                    if (i + 1 < n) dp[i][j] = (dp[i][j] + dp[i - 1][j]) % mod;
                }
            }
        }
        var ans = 0L;
        for (var j = 0; j < n; ++j) ans = (ans + dp[n - 1][j] * a[j] % mod) % mod;
        WriteLine(ans);
    }
}
0