結果

問題 No.1689 Set Cards
ユーザー ks2mks2m
提出日時 2021-09-24 22:53:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 316 ms / 2,000 ms
コード長 705 bytes
コンパイル時間 2,053 ms
コンパイル使用メモリ 77,404 KB
実行使用メモリ 58,740 KB
最終ジャッジ日時 2024-07-05 11:08:11
合計ジャッジ時間 8,842 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,984 KB
testcase_01 AC 117 ms
52,476 KB
testcase_02 AC 155 ms
53,880 KB
testcase_03 AC 161 ms
54,456 KB
testcase_04 AC 167 ms
54,416 KB
testcase_05 AC 160 ms
54,104 KB
testcase_06 AC 153 ms
54,100 KB
testcase_07 AC 123 ms
52,900 KB
testcase_08 AC 128 ms
53,852 KB
testcase_09 AC 130 ms
53,876 KB
testcase_10 AC 135 ms
53,952 KB
testcase_11 AC 297 ms
58,468 KB
testcase_12 AC 298 ms
58,616 KB
testcase_13 AC 299 ms
58,740 KB
testcase_14 AC 298 ms
58,512 KB
testcase_15 AC 220 ms
57,164 KB
testcase_16 AC 260 ms
58,316 KB
testcase_17 AC 208 ms
56,872 KB
testcase_18 AC 305 ms
58,568 KB
testcase_19 AC 312 ms
58,632 KB
testcase_20 AC 312 ms
58,684 KB
testcase_21 AC 244 ms
56,812 KB
testcase_22 AC 279 ms
57,664 KB
testcase_23 AC 262 ms
57,472 KB
testcase_24 AC 316 ms
58,712 KB
testcase_25 AC 306 ms
58,600 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[] k = new int[n];
		int[] c = new int[n];
		for (int i = 0; i < n; i++) {
			k[i] = sc.nextInt();
			for (int j = 0; j < k[i]; j++) {
				c[i] += 1 << (sc.nextInt() - 1);
			}
		}
		sc.close();

		int mod = 998244353;
		int m = 1 << 12;
		long[] dp = new long[m];
		for (int i = 0; i < n; i++) {
			long[] wk = new long[m];
			for (int j = 0; j < m; j++) {
				wk[j] += dp[j];
				wk[j & c[i]] += dp[j];
			}
			wk[c[i]]++;
			for (int j = 0; j < m; j++) {
				wk[j] %= mod;
			}
			dp = wk;
		}
		System.out.println(dp[0]);
	}
}
0