結果

問題 No.1689 Set Cards
ユーザー KudeKude
提出日時 2021-09-25 00:02:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 470 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 81,896 KB
実行使用メモリ 69,248 KB
最終ジャッジ日時 2024-07-05 11:39:34
合計ジャッジ時間 2,396 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
61,952 KB
testcase_01 AC 49 ms
61,696 KB
testcase_02 AC 48 ms
61,824 KB
testcase_03 AC 48 ms
61,824 KB
testcase_04 AC 50 ms
61,952 KB
testcase_05 AC 53 ms
62,336 KB
testcase_06 AC 51 ms
61,824 KB
testcase_07 AC 48 ms
61,824 KB
testcase_08 AC 48 ms
61,952 KB
testcase_09 AC 47 ms
61,568 KB
testcase_10 AC 49 ms
61,696 KB
testcase_11 AC 66 ms
69,248 KB
testcase_12 AC 65 ms
68,096 KB
testcase_13 AC 59 ms
66,176 KB
testcase_14 AC 60 ms
67,072 KB
testcase_15 AC 51 ms
62,976 KB
testcase_16 AC 57 ms
65,792 KB
testcase_17 AC 50 ms
62,336 KB
testcase_18 AC 61 ms
67,328 KB
testcase_19 AC 62 ms
67,696 KB
testcase_20 AC 63 ms
68,480 KB
testcase_21 AC 62 ms
64,896 KB
testcase_22 AC 57 ms
65,280 KB
testcase_23 AC 55 ms
65,408 KB
testcase_24 AC 60 ms
67,328 KB
testcase_25 AC 63 ms
67,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
n = int(input())
m = 12
d = [0] * (1 << m)
for _ in range(n):
    _, *c = map(int, input().split())
    s = sum(1 << x - 1 for x in c)
    d[s] += 1
for k in range(m):
    for s in range(1 << m):
        if s >> k & 1:
            d[s ^ 1 << k] += d[s]
for s in range(1 << m):
    d[s] = pow(2, d[s], MOD)
for k in range(m):
    for s in range(1 << m):
        if s >> k & 1:
            d[s ^ 1 << k] -= d[s]
            d[s ^ 1 << k] %= MOD
print(d[0])
0