結果

問題 No.1689 Set Cards
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-09-24 22:32:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 430 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 81,848 KB
実行使用メモリ 66,372 KB
最終ジャッジ日時 2024-07-05 10:58:41
合計ジャッジ時間 2,227 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
59,756 KB
testcase_01 AC 39 ms
58,632 KB
testcase_02 AC 40 ms
59,520 KB
testcase_03 AC 39 ms
58,840 KB
testcase_04 AC 39 ms
59,592 KB
testcase_05 AC 41 ms
58,960 KB
testcase_06 AC 40 ms
59,520 KB
testcase_07 AC 45 ms
60,516 KB
testcase_08 AC 42 ms
58,796 KB
testcase_09 AC 43 ms
58,560 KB
testcase_10 AC 41 ms
58,676 KB
testcase_11 AC 65 ms
65,256 KB
testcase_12 AC 65 ms
66,372 KB
testcase_13 AC 64 ms
66,164 KB
testcase_14 AC 61 ms
65,316 KB
testcase_15 AC 44 ms
60,940 KB
testcase_16 AC 53 ms
63,700 KB
testcase_17 AC 39 ms
59,500 KB
testcase_18 AC 57 ms
63,692 KB
testcase_19 AC 54 ms
64,532 KB
testcase_20 AC 53 ms
64,704 KB
testcase_21 AC 48 ms
61,360 KB
testcase_22 AC 51 ms
63,396 KB
testcase_23 AC 53 ms
63,236 KB
testcase_24 AC 53 ms
64,720 KB
testcase_25 AC 52 ms
64,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

or が0になるような選び方の通り数

"""


from sys import stdin
import sys

N = int(stdin.readline())
mod = 998244353

M = 2**12

dp = [0] * M

for i in range(N):

    kC = list(map(int,stdin.readline().split()))
    bi = 0

    for j in range(1,len(kC)):
        nc = kC[j]-1
        bi += 2**nc

    for j in range(M):
        dp[j & bi] += dp[j]
        dp[j & bi] %= mod

    dp[bi] += 1

print (dp[0] % mod)
0