結果

問題 No.2134 $\sigma$-algebra over Finite Set
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2023-05-11 23:15:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 188 ms / 2,000 ms
コード長 525 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 78,452 KB
最終ジャッジ日時 2024-05-05 18:47:38
合計ジャッジ時間 2,691 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,016 KB
testcase_01 AC 188 ms
78,312 KB
testcase_02 AC 180 ms
78,452 KB
testcase_03 AC 42 ms
53,632 KB
testcase_04 AC 51 ms
61,696 KB
testcase_05 AC 42 ms
53,760 KB
testcase_06 AC 60 ms
71,296 KB
testcase_07 AC 62 ms
73,216 KB
testcase_08 AC 42 ms
54,016 KB
testcase_09 AC 41 ms
53,972 KB
testcase_10 AC 91 ms
77,072 KB
testcase_11 AC 91 ms
77,180 KB
testcase_12 AC 103 ms
76,896 KB
testcase_13 AC 128 ms
77,440 KB
testcase_14 AC 70 ms
72,832 KB
testcase_15 AC 76 ms
76,800 KB
testcase_16 AC 76 ms
76,928 KB
testcase_17 AC 42 ms
53,632 KB
testcase_18 AC 42 ms
53,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

https://yukicoder.me/problems/no/2134

"""

import sys
from sys import stdin
import random

N,M = map(int,stdin.readline().split())

lis = [0] * N

for loop in range(M):

    a = list(map(int,stdin.readline().split()))[1:]
    for i in range(len(a)):
        a[i] -= 1

    aset = set(a)

    r1 = random.randint(0,10**18)
    r2 = random.randint(0,10**18)

    for i in range(N):
        if i in aset:
            lis[i] ^= r1
        else:
            lis[i] ^= r2

part = len(set(lis))
print (pow(2,part,998244353))
0