結果

問題 No.1749 ラムドスウイルスの感染拡大
ユーザー 小野寺健小野寺健
提出日時 2021-11-28 21:20:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 326 ms / 2,000 ms
コード長 815 bytes
コンパイル時間 4,118 ms
コンパイル使用メモリ 77,612 KB
実行使用メモリ 58,420 KB
最終ジャッジ日時 2024-07-01 16:34:04
合計ジャッジ時間 11,445 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,908 KB
testcase_01 AC 135 ms
53,980 KB
testcase_02 AC 134 ms
53,704 KB
testcase_03 AC 136 ms
53,684 KB
testcase_04 AC 326 ms
58,420 KB
testcase_05 AC 136 ms
54,208 KB
testcase_06 AC 135 ms
54,176 KB
testcase_07 AC 137 ms
54,016 KB
testcase_08 AC 135 ms
53,764 KB
testcase_09 AC 135 ms
54,052 KB
testcase_10 AC 169 ms
56,624 KB
testcase_11 AC 169 ms
56,816 KB
testcase_12 AC 313 ms
57,808 KB
testcase_13 AC 140 ms
54,240 KB
testcase_14 AC 223 ms
57,188 KB
testcase_15 AC 246 ms
56,980 KB
testcase_16 AC 272 ms
57,616 KB
testcase_17 AC 281 ms
57,556 KB
testcase_18 AC 303 ms
57,804 KB
testcase_19 AC 281 ms
57,536 KB
testcase_20 AC 160 ms
53,816 KB
testcase_21 AC 154 ms
54,136 KB
testcase_22 AC 148 ms
54,168 KB
testcase_23 AC 134 ms
53,796 KB
testcase_24 AC 152 ms
54,148 KB
testcase_25 AC 184 ms
57,156 KB
testcase_26 AC 175 ms
57,348 KB
testcase_27 AC 179 ms
57,252 KB
testcase_28 AC 269 ms
57,896 KB
testcase_29 AC 274 ms
57,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.List;
import java.util.ArrayList;

public class No1749 {

	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int M = scan.nextInt();
		int T = scan.nextInt();
		int MOD = 998244353;
		int[][] v = new int[N][2];
		List<List<Integer>> r = new ArrayList<List<Integer>>();
		for (int i=0; i < N; i++) {
			r.add(new ArrayList<Integer>());
		}
		for (int i=0; i < M; i++) {
			int s = scan.nextInt();
			int t = scan.nextInt();
			r.get(s).add(t);
			r.get(t).add(s);
		}
		v[0][0] = 1;
		for (int t=0; t < T; t++) {
			for (int i=0; i < N; i++) {
				v[i][(t+1) % 2] = 0;
				for (int j : r.get(i)) {
					v[i][(t+1) % 2] = (v[i][(t+1)%2] + v[j][t % 2]) % MOD;
				}
			}
		}
		System.out.println(v[0][T % 2]);
	}

}
0