結果

問題 No.1689 Set Cards
ユーザー asumo0729asumo0729
提出日時 2021-09-24 22:26:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 544 ms / 2,000 ms
コード長 1,142 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 77,012 KB
最終ジャッジ日時 2024-07-05 10:55:03
合計ジャッジ時間 7,330 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,636 KB
testcase_01 AC 69 ms
70,604 KB
testcase_02 AC 92 ms
73,068 KB
testcase_03 AC 82 ms
73,748 KB
testcase_04 AC 86 ms
73,028 KB
testcase_05 AC 82 ms
73,648 KB
testcase_06 AC 81 ms
72,852 KB
testcase_07 AC 73 ms
71,388 KB
testcase_08 AC 64 ms
70,152 KB
testcase_09 AC 62 ms
69,316 KB
testcase_10 AC 70 ms
71,708 KB
testcase_11 AC 535 ms
77,012 KB
testcase_12 AC 544 ms
76,728 KB
testcase_13 AC 412 ms
76,932 KB
testcase_14 AC 460 ms
76,748 KB
testcase_15 AC 211 ms
76,272 KB
testcase_16 AC 362 ms
76,368 KB
testcase_17 AC 149 ms
76,480 KB
testcase_18 AC 525 ms
76,816 KB
testcase_19 AC 315 ms
76,684 KB
testcase_20 AC 311 ms
76,284 KB
testcase_21 AC 153 ms
76,184 KB
testcase_22 AC 269 ms
76,628 KB
testcase_23 AC 268 ms
76,552 KB
testcase_24 AC 343 ms
76,808 KB
testcase_25 AC 467 ms
76,452 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

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

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

houjo = [0 for _ in range(2 ** 12)]

All = pow(2, N, mod) - 1
for i in range(2 ** 12):
    g = 0
    temp = []
    for j in range(12):
        if (i >> j) & 1:
            temp.append(j + 1)
    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] = pow(2, g, mod) - 1

for i in range(1,2 ** 12):
    one = 0
    for j in range(12):
        if (i >> j) & 1:
            one += 1

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

print(All)
0