結果

問題 No.1749 ラムドスウイルスの感染拡大
ユーザー kakel-sankakel-san
提出日時 2023-12-24 19:45:41
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 1,234 bytes
コンパイル時間 8,502 ms
コンパイル使用メモリ 167,872 KB
実行使用メモリ 188,372 KB
最終ジャッジ日時 2024-09-27 13:46:47
合計ジャッジ時間 12,145 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
30,336 KB
testcase_01 AC 64 ms
30,200 KB
testcase_02 AC 61 ms
30,464 KB
testcase_03 AC 60 ms
30,432 KB
testcase_04 AC 94 ms
31,612 KB
testcase_05 AC 62 ms
30,208 KB
testcase_06 AC 60 ms
30,208 KB
testcase_07 AC 63 ms
30,336 KB
testcase_08 AC 61 ms
30,464 KB
testcase_09 AC 61 ms
30,592 KB
testcase_10 AC 74 ms
39,040 KB
testcase_11 AC 74 ms
39,296 KB
testcase_12 AC 105 ms
39,168 KB
testcase_13 AC 63 ms
31,232 KB
testcase_14 AC 65 ms
31,352 KB
testcase_15 AC 70 ms
31,360 KB
testcase_16 AC 76 ms
31,616 KB
testcase_17 AC 91 ms
33,664 KB
testcase_18 AC 99 ms
38,240 KB
testcase_19 AC 97 ms
36,992 KB
testcase_20 AC 66 ms
31,360 KB
testcase_21 AC 66 ms
31,352 KB
testcase_22 AC 61 ms
30,592 KB
testcase_23 AC 60 ms
30,336 KB
testcase_24 AC 61 ms
32,408 KB
testcase_25 AC 72 ms
36,608 KB
testcase_26 AC 66 ms
32,896 KB
testcase_27 AC 64 ms
32,000 KB
testcase_28 AC 92 ms
31,608 KB
testcase_29 AC 91 ms
188,372 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (108 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 c = NList;
        var (n, m, t) = (c[0], c[1], c[2]);
        var map = NArr(m);
        var tree = new List<int>[n];
        for (var i = 0; i < tree.Length; ++i) tree[i] = new List<int>();
        foreach (var edge in map)
        {
            tree[edge[0]].Add(edge[1]);
            tree[edge[1]].Add(edge[0]);
        }
        var mod = 998_244_353;
        var num = new long[n];
        num[0] = 1;
        for (var d = 0; d < t; ++d)
        {
            var nnum = new long[n];
            for (var i = 0; i < n; ++i)
            {
                foreach (var to in tree[i])
                {
                    nnum[i] = (nnum[i] + num[to]) % mod;
                }
            }
            num = nnum;
        }
        WriteLine(num[0]);
    }
}
0