結果

問題 No.2219 Re:010
ユーザー kakel-sankakel-san
提出日時 2023-08-26 20:28:02
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 1,648 bytes
コンパイル時間 2,550 ms
コンパイル使用メモリ 104,960 KB
実行使用メモリ 24,832 KB
最終ジャッジ日時 2024-06-07 15:56:36
合計ジャッジ時間 4,367 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
18,560 KB
testcase_01 AC 23 ms
18,304 KB
testcase_02 AC 22 ms
18,432 KB
testcase_03 AC 35 ms
23,552 KB
testcase_04 AC 24 ms
18,376 KB
testcase_05 AC 32 ms
22,272 KB
testcase_06 AC 23 ms
18,944 KB
testcase_07 AC 26 ms
20,480 KB
testcase_08 AC 33 ms
23,296 KB
testcase_09 AC 31 ms
23,168 KB
testcase_10 AC 31 ms
21,760 KB
testcase_11 AC 29 ms
21,120 KB
testcase_12 AC 28 ms
21,120 KB
testcase_13 AC 35 ms
24,576 KB
testcase_14 AC 35 ms
24,576 KB
testcase_15 AC 36 ms
24,448 KB
testcase_16 AC 36 ms
24,448 KB
testcase_17 AC 35 ms
24,448 KB
testcase_18 AC 32 ms
24,832 KB
testcase_19 AC 31 ms
24,704 KB
testcase_20 AC 46 ms
24,448 KB
testcase_21 AC 28 ms
18,560 KB
testcase_22 AC 22 ms
18,176 KB
testcase_23 AC 24 ms
18,304 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

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 s = ReadLine();
        WriteLine(Count010(s));
    }
    static long Count010(string s)
    {
        var mod = 998_244_353;
        var dp = new long[3][];
        for (var i = 0; i < dp.Length; ++i) dp[i] = new long[s.Length];
        var count = new long[s.Length];
        count[0] = s[0] == '?' ? 2 : 1;
        if (s[0] != '1') dp[0][0] = 1;
        for (var i = 1; i < s.Length; ++i)
        {
            if (s[i] == '0')
            {
                dp[0][i] = (dp[0][i - 1] + count[i - 1]) % mod;
                dp[1][i] = dp[1][i - 1];
                dp[2][i] = (dp[2][i - 1] + dp[1][i - 1]) % mod;
                count[i] = count[i - 1];
            }
            else if (s[i] == '1')
            {
                dp[0][i] = dp[0][i - 1];
                dp[1][i] = (dp[1][i - 1] + dp[0][i - 1]) % mod;
                dp[2][i] = dp[2][i - 1];
                count[i] = count[i - 1];
            }
            else
            {
                dp[0][i] = (dp[0][i - 1] * 2 + count[i - 1]) % mod;
                dp[1][i] = (dp[1][i - 1] * 2 + dp[0][i - 1]) % mod;
                dp[2][i] = (dp[2][i - 1] * 2 + dp[1][i - 1]) % mod;
                count[i] = count[i - 1] * 2 % mod;
            }
        }
        return dp[2].Last();
    }
}
0