結果

問題 No.1689 Set Cards
ユーザー NoneNone
提出日時 2021-10-06 01:40:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 279 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 69,848 KB
最終ジャッジ日時 2024-07-23 02:39:41
合計ジャッジ時間 2,723 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
58,888 KB
testcase_01 AC 44 ms
58,944 KB
testcase_02 AC 47 ms
60,980 KB
testcase_03 AC 45 ms
59,488 KB
testcase_04 AC 45 ms
59,344 KB
testcase_05 AC 45 ms
60,828 KB
testcase_06 AC 44 ms
59,188 KB
testcase_07 AC 44 ms
60,552 KB
testcase_08 AC 42 ms
58,496 KB
testcase_09 AC 41 ms
58,868 KB
testcase_10 AC 44 ms
59,680 KB
testcase_11 AC 80 ms
69,848 KB
testcase_12 AC 75 ms
68,940 KB
testcase_13 AC 69 ms
67,364 KB
testcase_14 AC 74 ms
68,952 KB
testcase_15 AC 49 ms
60,108 KB
testcase_16 AC 63 ms
64,736 KB
testcase_17 AC 48 ms
61,188 KB
testcase_18 AC 69 ms
67,328 KB
testcase_19 AC 69 ms
66,464 KB
testcase_20 AC 69 ms
67,036 KB
testcase_21 AC 63 ms
63,672 KB
testcase_22 AC 67 ms
66,080 KB
testcase_23 AC 66 ms
64,352 KB
testcase_24 AC 68 ms
66,784 KB
testcase_25 AC 68 ms
66,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD=998244353
N=int(input())
L=12
mask=(1<<L)-1
dp=[0]*(1<<L)
dp[mask]=1
for _ in range(N):
    C=list(map(int, input().split()))
    b=0
    for c in C[1:]:
        c-=1
        b|=1<<c
    for bit in range(1<<L):
        dp[b&bit]+=dp[bit]
        dp[b&bit]%=MOD

print(dp[0])
0