結果

問題 No.1689 Set Cards
ユーザー tcltktcltk
提出日時 2021-09-30 06:15:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 177 ms / 2,000 ms
コード長 736 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,016 KB
実行使用メモリ 90,380 KB
最終ジャッジ日時 2024-07-17 08:59:22
合計ジャッジ時間 5,609 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
89,096 KB
testcase_01 AC 142 ms
89,308 KB
testcase_02 AC 145 ms
89,512 KB
testcase_03 AC 142 ms
89,172 KB
testcase_04 AC 145 ms
89,760 KB
testcase_05 AC 154 ms
89,300 KB
testcase_06 AC 144 ms
89,652 KB
testcase_07 AC 143 ms
89,284 KB
testcase_08 AC 139 ms
89,528 KB
testcase_09 AC 139 ms
89,428 KB
testcase_10 AC 141 ms
89,028 KB
testcase_11 AC 158 ms
89,680 KB
testcase_12 AC 173 ms
89,944 KB
testcase_13 AC 155 ms
89,660 KB
testcase_14 AC 153 ms
89,640 KB
testcase_15 AC 146 ms
89,492 KB
testcase_16 AC 172 ms
90,380 KB
testcase_17 AC 146 ms
89,556 KB
testcase_18 AC 155 ms
89,644 KB
testcase_19 AC 169 ms
89,632 KB
testcase_20 AC 169 ms
90,036 KB
testcase_21 AC 146 ms
89,420 KB
testcase_22 AC 149 ms
89,376 KB
testcase_23 AC 147 ms
89,316 KB
testcase_24 AC 176 ms
89,872 KB
testcase_25 AC 177 ms
89,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
import bisect
import heapq


def input():
    return sys.stdin.readline()[:-1]


# sys.setrecursionlimit(1000000)

# _INPUT = """3
# 2 1 2
# 2 1 3 
# 2 2 3

# """
# sys.stdin = io.StringIO(_INPUT)

INF = 10**10

MOD = 998244353

N = int(input())
S = []
for _ in range(N):
    dat = list(map(int, input().split()))
    s = 0
    for c in dat[1:]:
        s |= (1<<(c-1))
    S.append(s)

n = 0
for mask in range(1, 1<<12):
    k = bin(mask).count("1") 
    v = len([s for s in S if (mask & s == mask)])
    n += ((-1)**(k-1) * (pow(2, v, MOD) - 1)) % MOD

ans = (pow(2, N, MOD) - 1 - n) % MOD
print(ans)


0