結果

問題 No.1749 ラムドスウイルスの感染拡大
ユーザー ks2mks2m
提出日時 2021-11-19 21:51:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 249 ms / 2,000 ms
コード長 689 bytes
コンパイル時間 2,209 ms
コンパイル使用メモリ 77,348 KB
実行使用メモリ 57,500 KB
最終ジャッジ日時 2024-06-10 08:37:18
合計ジャッジ時間 8,157 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,900 KB
testcase_01 AC 137 ms
54,304 KB
testcase_02 AC 131 ms
54,400 KB
testcase_03 AC 126 ms
53,764 KB
testcase_04 AC 219 ms
56,964 KB
testcase_05 AC 138 ms
54,144 KB
testcase_06 AC 133 ms
54,004 KB
testcase_07 AC 129 ms
53,792 KB
testcase_08 AC 130 ms
53,948 KB
testcase_09 AC 127 ms
53,968 KB
testcase_10 AC 156 ms
56,640 KB
testcase_11 AC 157 ms
56,872 KB
testcase_12 AC 249 ms
57,412 KB
testcase_13 AC 130 ms
54,040 KB
testcase_14 AC 201 ms
56,836 KB
testcase_15 AC 206 ms
57,168 KB
testcase_16 AC 198 ms
56,772 KB
testcase_17 AC 226 ms
57,272 KB
testcase_18 AC 248 ms
57,360 KB
testcase_19 AC 240 ms
57,500 KB
testcase_20 AC 142 ms
54,200 KB
testcase_21 AC 141 ms
54,208 KB
testcase_22 AC 143 ms
54,132 KB
testcase_23 AC 118 ms
53,064 KB
testcase_24 AC 142 ms
53,924 KB
testcase_25 AC 163 ms
56,844 KB
testcase_26 AC 152 ms
56,240 KB
testcase_27 AC 151 ms
54,116 KB
testcase_28 AC 219 ms
56,920 KB
testcase_29 AC 211 ms
57,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		int t = sc.nextInt();
		int[] a = new int[m];
		int[] b = new int[m];
		for (int i = 0; i < m; i++) {
			a[i] = sc.nextInt();
			b[i] = sc.nextInt();
		}
		sc.close();

		int mod = 998244353;
		long[] ans = new long[n];
		ans[0] = 1;
		for (int i = 0; i < t; i++) {
			long[] wk = new long[n];
			for (int j = 0; j < m; j++) {
				wk[a[j]] += ans[b[j]];
				wk[b[j]] += ans[a[j]];
			}
			for (int j = 0; j < n; j++) {
				wk[j] %= mod;
			}
			ans = wk;
		}
		System.out.println(ans[0]);
	}
}
0