結果

問題 No.2134 $\sigma$-algebra over Finite Set
ユーザー shift_aaaashift_aaaa
提出日時 2022-11-09 08:04:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 384 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-09-24 07:27:03
合計ジャッジ時間 3,687 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 RE -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 28 ms
10,880 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 32 ms
10,752 KB
testcase_18 AC 30 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
A = [0]*m
contain = [0]*n
for i in range(m):
    l, *a = map(int, input().split())
    for aj in a:
        A[i] |= (1 << (aj-1))

for i in range(0,n):
    for j in range(0,m):
        if a[j] & (1 << i) != 0:
            contain[i] |= (1 << j)

sets = set()
for i in range(0,n):
    sets.add(contain[i])

size = len(sets)
print(pow(2,size,998244353))
0