結果

問題 No.1689 Set Cards
ユーザー 👑 rin204rin204
提出日時 2022-01-25 17:12:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 363 ms / 2,000 ms
コード長 412 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 83,428 KB
最終ジャッジ日時 2024-12-16 08:53:57
合計ジャッジ時間 3,895 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 AC 43 ms
51,456 KB
testcase_02 AC 45 ms
51,968 KB
testcase_03 AC 52 ms
59,648 KB
testcase_04 AC 51 ms
59,136 KB
testcase_05 AC 45 ms
52,352 KB
testcase_06 AC 43 ms
51,584 KB
testcase_07 AC 43 ms
51,968 KB
testcase_08 AC 43 ms
51,584 KB
testcase_09 AC 43 ms
51,968 KB
testcase_10 AC 43 ms
51,584 KB
testcase_11 AC 239 ms
78,780 KB
testcase_12 AC 226 ms
78,424 KB
testcase_13 AC 82 ms
70,528 KB
testcase_14 AC 113 ms
76,160 KB
testcase_15 AC 91 ms
76,032 KB
testcase_16 AC 117 ms
75,648 KB
testcase_17 AC 74 ms
72,704 KB
testcase_18 AC 241 ms
78,592 KB
testcase_19 AC 63 ms
64,640 KB
testcase_20 AC 63 ms
65,152 KB
testcase_21 AC 55 ms
59,648 KB
testcase_22 AC 55 ms
60,416 KB
testcase_23 AC 69 ms
66,048 KB
testcase_24 AC 363 ms
83,428 KB
testcase_25 AC 153 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

n = int(input())
lst = []
for _ in range(n):
    k, *C = map(int, input().split())
    bit = 0
    for c in C:
        bit |= 1 << (c - 1)
    lst.append(bit)
dp = {(1 << 12) - 1:1}
for c in lst:
    dp2 = {}
    for k, v in dp.items():
        dp2[k] = dp2.get(k, 0) + v
        dp2[k] %= MOD
        dp2[k & c] = dp2.get(k & c, 0) + v
        dp2[k & c] %= MOD
    dp = dp2
print(dp.get(0, 0))
0