結果

問題 No.1689 Set Cards
ユーザー 👑 KazunKazun
提出日時 2021-09-24 22:40:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 311 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 69,276 KB
最終ジャッジ日時 2024-07-05 11:01:28
合計ジャッジ時間 2,383 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
60,120 KB
testcase_01 AC 46 ms
60,360 KB
testcase_02 AC 48 ms
61,012 KB
testcase_03 AC 42 ms
59,376 KB
testcase_04 AC 45 ms
59,768 KB
testcase_05 AC 45 ms
61,116 KB
testcase_06 AC 42 ms
59,972 KB
testcase_07 AC 44 ms
60,784 KB
testcase_08 AC 43 ms
58,500 KB
testcase_09 AC 40 ms
60,172 KB
testcase_10 AC 45 ms
60,744 KB
testcase_11 AC 77 ms
69,276 KB
testcase_12 AC 67 ms
68,156 KB
testcase_13 AC 68 ms
67,780 KB
testcase_14 AC 64 ms
66,500 KB
testcase_15 AC 48 ms
62,220 KB
testcase_16 AC 62 ms
67,052 KB
testcase_17 AC 45 ms
61,752 KB
testcase_18 AC 69 ms
68,008 KB
testcase_19 AC 66 ms
68,076 KB
testcase_20 AC 67 ms
68,576 KB
testcase_21 AC 63 ms
64,664 KB
testcase_22 AC 64 ms
65,564 KB
testcase_23 AC 66 ms
66,096 KB
testcase_24 AC 67 ms
67,676 KB
testcase_25 AC 68 ms
68,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def encode(S):
    X=0
    for s in S:
        X+=1<<(s-1)
    return X

N=int(input())
Mod=998244353

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

for _ in range(N):
    k,*C=map(int,input().split())

    y=encode(C)

    for x in range(1<<12):
        DP[x&y]+=DP[x]

    for x in range(1<<12):
        DP[x]%=Mod

print(DP[0])
0