結果

問題 No.1689 Set Cards
ユーザー asumo0729asumo0729
提出日時 2021-09-24 22:31:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 536 ms / 2,000 ms
コード長 1,303 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,604 KB
実行使用メモリ 77,148 KB
最終ジャッジ日時 2024-07-05 10:57:56
合計ジャッジ時間 7,048 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
71,448 KB
testcase_01 AC 73 ms
69,460 KB
testcase_02 AC 88 ms
72,636 KB
testcase_03 AC 78 ms
72,768 KB
testcase_04 AC 81 ms
72,176 KB
testcase_05 AC 80 ms
71,896 KB
testcase_06 AC 77 ms
72,216 KB
testcase_07 AC 69 ms
71,064 KB
testcase_08 AC 60 ms
68,688 KB
testcase_09 AC 61 ms
68,720 KB
testcase_10 AC 69 ms
70,692 KB
testcase_11 AC 511 ms
76,976 KB
testcase_12 AC 536 ms
77,148 KB
testcase_13 AC 402 ms
77,096 KB
testcase_14 AC 465 ms
76,680 KB
testcase_15 AC 200 ms
76,440 KB
testcase_16 AC 353 ms
76,900 KB
testcase_17 AC 145 ms
76,552 KB
testcase_18 AC 523 ms
76,796 KB
testcase_19 AC 304 ms
76,828 KB
testcase_20 AC 304 ms
76,740 KB
testcase_21 AC 150 ms
76,572 KB
testcase_22 AC 261 ms
76,820 KB
testcase_23 AC 262 ms
76,920 KB
testcase_24 AC 341 ms
76,928 KB
testcase_25 AC 452 ms
76,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from operator import itemgetter
from collections import defaultdict, deque
import heapq
import bisect

stdin=sys.stdin
sys.setrecursionlimit(10 ** 8)

ip=lambda: int(sp())
fp=lambda: float(sp())
lp=lambda:list(map(int,stdin.readline().split()))
sp=lambda:stdin.readline().rstrip()
Yp=lambda:print('Yes')
Np=lambda:print('No')
inf = 1 << 60
eps = 1e-9
sortkey = itemgetter(0)
mod = 998244353

def power_list(x, n, mod):
    res = [1]
    for _ in range(n):
        res.append(res[-1] * x % mod)
    return res


###############################################################

N = ip()
A = []
for _ in range(N):
    now = lp()
    A.append(now[1:])

houjo = [0 for _ in range(2 ** 12)]
bit = [0 for _ in range(2 ** 12)]
ruijo = power_list(2, N + 10, mod)

All = ruijo[N] - 1
for i in range(2 ** 12):
    g = 0
    temp = []
    one = 0
    for j in range(12):
        if (i >> j) & 1:
            one += 1
            temp.append(j + 1)
    bit[i] = one
    for j in range(N):
        flag = True
        for get in temp:
            if not get in A[j]:
                flag = False
        if flag:
            g += 1
    houjo[i] = ruijo[g] - 1

for i in range(1,2 ** 12):
    one = bit[i]

    if one & 1:
        All -= houjo[i]
    else:
        All += houjo[i]
    All %= mod

print(All)
0