結果

問題 No.1689 Set Cards
ユーザー titiatitia
提出日時 2021-09-24 23:23:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 375 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 64,128 KB
最終ジャッジ日時 2024-07-05 11:33:37
合計ジャッジ時間 2,145 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
58,880 KB
testcase_01 AC 43 ms
58,880 KB
testcase_02 AC 42 ms
59,008 KB
testcase_03 AC 41 ms
59,008 KB
testcase_04 AC 40 ms
59,136 KB
testcase_05 AC 39 ms
58,880 KB
testcase_06 AC 40 ms
58,880 KB
testcase_07 AC 40 ms
58,880 KB
testcase_08 AC 38 ms
57,984 KB
testcase_09 AC 37 ms
58,112 KB
testcase_10 AC 40 ms
59,008 KB
testcase_11 AC 58 ms
63,744 KB
testcase_12 AC 58 ms
64,128 KB
testcase_13 AC 59 ms
63,872 KB
testcase_14 AC 58 ms
63,744 KB
testcase_15 AC 46 ms
60,416 KB
testcase_16 AC 56 ms
62,976 KB
testcase_17 AC 44 ms
59,904 KB
testcase_18 AC 59 ms
63,744 KB
testcase_19 AC 58 ms
63,360 KB
testcase_20 AC 56 ms
63,616 KB
testcase_21 AC 60 ms
61,696 KB
testcase_22 AC 59 ms
62,464 KB
testcase_23 AC 59 ms
62,720 KB
testcase_24 AC 57 ms
63,616 KB
testcase_25 AC 58 ms
64,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())

mod=998244353

S=[list(map(int,input().split()))[1:] for i in range(N)]

DP=[0]*(1<<12)
DP[0]=1

for i in range(N):
    s=S[i]
    ax=0
    for j in range(12):
        if j+1 in s:
            continue
        ax+=(1<<j)

    for k in range((1<<12)-1,-1,-1):
        DP[ax|k]+=DP[k]
        DP[ax|k]%=mod

print(DP[-1])
0