結果

問題 No.1689 Set Cards
ユーザー lloyzlloyz
提出日時 2021-11-24 22:55:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 548 ms / 2,000 ms
コード長 488 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 79,500 KB
最終ジャッジ日時 2024-06-27 08:25:57
合計ジャッジ時間 6,059 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
70,152 KB
testcase_01 AC 52 ms
65,240 KB
testcase_02 AC 70 ms
76,040 KB
testcase_03 AC 62 ms
76,076 KB
testcase_04 AC 61 ms
76,072 KB
testcase_05 AC 62 ms
75,996 KB
testcase_06 AC 60 ms
73,748 KB
testcase_07 AC 63 ms
74,068 KB
testcase_08 AC 50 ms
65,892 KB
testcase_09 AC 52 ms
72,056 KB
testcase_10 AC 56 ms
72,824 KB
testcase_11 AC 253 ms
77,884 KB
testcase_12 AC 252 ms
77,628 KB
testcase_13 AC 196 ms
78,048 KB
testcase_14 AC 261 ms
78,336 KB
testcase_15 AC 100 ms
76,060 KB
testcase_16 AC 155 ms
77,060 KB
testcase_17 AC 85 ms
76,320 KB
testcase_18 AC 254 ms
77,704 KB
testcase_19 AC 548 ms
79,500 KB
testcase_20 AC 545 ms
79,064 KB
testcase_21 AC 149 ms
76,852 KB
testcase_22 AC 147 ms
76,956 KB
testcase_23 AC 155 ms
77,128 KB
testcase_24 AC 461 ms
78,064 KB
testcase_25 AC 395 ms
77,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
mod = 998244353

state = [set() for _ in range(12)]
for i in range(n):
    L = list(map(int, input().split()))
    k = L[0]
    L = L[1:]
    for j in range(k):
        state[L[j] - 1].add(i)

ans = 0
for bit in range(1 << 12):
    curr_state = set(range(n))
    bit_cnt = 0
    for i in range(12):
        if 1 & (bit >> i):
            curr_state &= state[i]
            bit_cnt += 1
    ans += pow(2, len(curr_state), mod) * pow(-1, bit_cnt)
    ans %= mod
print(ans)
0