結果

問題 No.1702 count good string
ユーザー kakel-sankakel-san
提出日時 2023-12-30 19:45:09
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 1,337 bytes
コンパイル時間 8,231 ms
コンパイル使用メモリ 167,860 KB
実行使用メモリ 184,628 KB
最終ジャッジ日時 2024-09-27 16:46:05
合計ジャッジ時間 14,506 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
28,800 KB
testcase_01 AC 54 ms
29,056 KB
testcase_02 AC 53 ms
28,928 KB
testcase_03 AC 54 ms
29,184 KB
testcase_04 AC 56 ms
28,516 KB
testcase_05 AC 57 ms
28,544 KB
testcase_06 AC 54 ms
29,184 KB
testcase_07 AC 56 ms
28,544 KB
testcase_08 AC 55 ms
28,928 KB
testcase_09 AC 55 ms
28,928 KB
testcase_10 AC 55 ms
29,312 KB
testcase_11 AC 56 ms
28,800 KB
testcase_12 AC 54 ms
28,672 KB
testcase_13 AC 108 ms
51,072 KB
testcase_14 AC 106 ms
51,200 KB
testcase_15 AC 108 ms
50,944 KB
testcase_16 AC 109 ms
50,816 KB
testcase_17 AC 107 ms
51,072 KB
testcase_18 AC 107 ms
50,552 KB
testcase_19 AC 111 ms
50,944 KB
testcase_20 AC 110 ms
50,804 KB
testcase_21 AC 109 ms
50,804 KB
testcase_22 AC 107 ms
50,944 KB
testcase_23 AC 55 ms
28,664 KB
testcase_24 AC 57 ms
29,312 KB
testcase_25 AC 57 ms
28,800 KB
testcase_26 AC 56 ms
29,184 KB
testcase_27 AC 54 ms
29,184 KB
testcase_28 AC 54 ms
29,172 KB
testcase_29 AC 54 ms
28,772 KB
testcase_30 AC 54 ms
28,928 KB
testcase_31 AC 55 ms
29,308 KB
testcase_32 AC 56 ms
28,800 KB
testcase_33 AC 103 ms
50,688 KB
testcase_34 AC 105 ms
50,944 KB
testcase_35 AC 104 ms
50,688 KB
testcase_36 AC 103 ms
50,944 KB
testcase_37 AC 104 ms
51,200 KB
testcase_38 AC 104 ms
51,072 KB
testcase_39 AC 104 ms
50,912 KB
testcase_40 AC 106 ms
50,688 KB
testcase_41 AC 104 ms
51,072 KB
testcase_42 AC 103 ms
50,816 KB
testcase_43 AC 105 ms
51,060 KB
testcase_44 AC 103 ms
50,816 KB
testcase_45 AC 53 ms
28,516 KB
testcase_46 AC 54 ms
28,928 KB
testcase_47 AC 53 ms
29,052 KB
testcase_48 AC 55 ms
28,544 KB
testcase_49 AC 55 ms
184,628 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (100 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();
        var dp = new long[n + 1][];
        dp[0] = new long[18];
        var y = "yukicoder";
        var mod = 1_000_000_007;
        for (var i = 1; i < dp.Length; ++i)
        {
            dp[i] = (long[]) dp[i - 1].Clone();
            if (s[i - 1] == y[0])
            {
                dp[i][0] = (dp[i][0] + 1) % mod;
            }
            else if (s[i - 1] == '?')
            {
                dp[i][9] = (dp[i][9] + 1) % mod;
                for (var j = 1; j < y.Length; ++j)
                {
                    dp[i][j + 9] = (dp[i][j + 9] + dp[i - 1][j - 1]) % mod;
                }
            }
            else for (var j = 1; j < y.Length; ++j) if (s[i - 1] == y[j])
            {
                dp[i][j] = (dp[i][j] + dp[i - 1][j - 1]) % mod;
                dp[i][j + 9] = (dp[i][j + 9] + dp[i - 1][j + 8]) % mod;
            }
        }
        WriteLine((dp[n][8] + dp[n][17]) % mod);
    }
}
0