結果

問題 No.2131 Concon Substrings (COuNt Version)
ユーザー kakel-sankakel-san
提出日時 2023-09-25 22:57:32
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 295 ms / 2,000 ms
コード長 911 bytes
コンパイル時間 1,341 ms
コンパイル使用メモリ 111,504 KB
実行使用メモリ 89,472 KB
最終ジャッジ日時 2024-07-18 18:36:55
合計ジャッジ時間 4,217 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
17,536 KB
testcase_01 AC 20 ms
17,792 KB
testcase_02 AC 22 ms
17,792 KB
testcase_03 AC 144 ms
49,408 KB
testcase_04 AC 21 ms
17,536 KB
testcase_05 AC 20 ms
17,408 KB
testcase_06 AC 19 ms
17,664 KB
testcase_07 AC 291 ms
89,472 KB
testcase_08 AC 93 ms
34,944 KB
testcase_09 AC 295 ms
89,344 KB
testcase_10 AC 291 ms
89,344 KB
testcase_11 AC 208 ms
66,944 KB
testcase_12 AC 204 ms
65,664 KB
testcase_13 AC 21 ms
17,664 KB
testcase_14 AC 108 ms
42,752 KB
testcase_15 AC 86 ms
34,304 KB
testcase_16 AC 21 ms
17,408 KB
testcase_17 AC 79 ms
33,152 KB
testcase_18 AC 79 ms
33,408 KB
testcase_19 AC 50 ms
25,088 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 long[] NList => ReadLine().Split().Select(long.Parse).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = NN;
        var mod = 998_244_353;
        var dp = new long[n + 1][];
        for (var i = 0; i < dp.Length; ++i) dp[i] = new long[n + 1];
        dp[0][0] = 1;
        for (var i = 0; i < n; ++i) for (var j = 0; j < n; ++j)
        {
            dp[i][j + 1] = (dp[i][j + 1] + dp[i][j] * 25) % mod;
            dp[i + 1][j + 1] = (dp[i + 1][j + 1] + dp[i][j]) % mod;
        }
        var ans = 0L;
        for (var i = 3; i <= n; ++i)
        {
            ans = (ans + dp[i][n] * (i / 3)) % mod;
        }
        WriteLine(ans);
    }
}
0