結果
問題 | No.2134 $\sigma$-algebra over Finite Set |
ユーザー | titia |
提出日時 | 2022-12-11 00:58:21 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 598 bytes |
コンパイル時間 | 1,383 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 76,416 KB |
最終ジャッジ日時 | 2024-10-15 01:05:41 |
合計ジャッジ時間 | 4,888 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 70 ms
76,032 KB |
testcase_07 | AC | 72 ms
76,160 KB |
testcase_08 | AC | 40 ms
51,968 KB |
testcase_09 | AC | 40 ms
51,712 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 197 ms
76,032 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 40 ms
51,968 KB |
testcase_18 | AC | 41 ms
51,840 KB |
ソースコード
import sys input = sys.stdin.readline N,M=map(int,input().split()) mod=998244353 BASE=[] def sweep(x): for b in BASE: if b^x<x: x=b^x return x ALL=(1<<N)-1 for i in range(M): A=list(map(int,input().split())) x=0 for a in A[1:]: x|=1<<a k=sweep(x) if k!=0: # 掃き出した値が0でないなら基底に入れる。 BASE.append(k) x=ALL^x k=sweep(x) if k!=0: # 掃き出した値が0でないなら基底に入れる。 BASE.append(k) if len(BASE)==0: print(2) else: print(pow(2,len(BASE),mod))