結果

問題 No.1689 Set Cards
ユーザー tamatotamato
提出日時 2021-09-24 21:31:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 661 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-07-05 10:06:43
合計ジャッジ時間 2,583 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
58,364 KB
testcase_01 AC 40 ms
58,624 KB
testcase_02 AC 43 ms
59,392 KB
testcase_03 AC 40 ms
58,624 KB
testcase_04 AC 42 ms
58,752 KB
testcase_05 AC 41 ms
58,496 KB
testcase_06 AC 42 ms
58,496 KB
testcase_07 AC 41 ms
58,368 KB
testcase_08 AC 41 ms
58,240 KB
testcase_09 AC 42 ms
58,112 KB
testcase_10 AC 42 ms
58,496 KB
testcase_11 AC 71 ms
76,160 KB
testcase_12 AC 70 ms
76,160 KB
testcase_13 AC 73 ms
76,400 KB
testcase_14 AC 72 ms
76,672 KB
testcase_15 AC 47 ms
63,360 KB
testcase_16 AC 60 ms
74,112 KB
testcase_17 AC 43 ms
60,928 KB
testcase_18 AC 68 ms
76,032 KB
testcase_19 AC 69 ms
76,132 KB
testcase_20 AC 68 ms
76,408 KB
testcase_21 AC 69 ms
75,904 KB
testcase_22 AC 66 ms
75,820 KB
testcase_23 AC 67 ms
75,560 KB
testcase_24 AC 71 ms
76,288 KB
testcase_25 AC 72 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    N = int(input())
    C = []
    for _ in range(N):
        line = list(map(int, input().split()))
        state = 0
        for c in line[1:]:
            state += 1 << (c - 1)
        C.append(state)

    dp = [0] * (1 << 12)
    dp[-1] = 1
    for c in C:
        dp_new = [0] * (1 << 12)
        for state in range(1 << 12):
            state_new = state & c
            dp_new[state] = (dp_new[state] + dp[state])%mod
            dp_new[state_new] = (dp_new[state_new] + dp[state])%mod
        dp = dp_new
    print(dp[0])


if __name__ == '__main__':
    main()
0