結果

問題 No.1689 Set Cards
ユーザー brthyyjpbrthyyjp
提出日時 2021-09-24 22:52:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 1,123 bytes
コンパイル時間 696 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 76,780 KB
最終ジャッジ日時 2024-07-05 11:07:51
合計ジャッジ時間 3,190 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
59,804 KB
testcase_01 AC 35 ms
59,656 KB
testcase_02 AC 39 ms
62,216 KB
testcase_03 AC 36 ms
60,804 KB
testcase_04 AC 37 ms
60,052 KB
testcase_05 AC 37 ms
60,608 KB
testcase_06 AC 37 ms
60,564 KB
testcase_07 AC 36 ms
59,436 KB
testcase_08 AC 36 ms
59,588 KB
testcase_09 AC 35 ms
59,864 KB
testcase_10 AC 36 ms
60,604 KB
testcase_11 AC 91 ms
76,672 KB
testcase_12 AC 90 ms
76,780 KB
testcase_13 AC 89 ms
76,588 KB
testcase_14 AC 94 ms
76,600 KB
testcase_15 AC 52 ms
69,960 KB
testcase_16 AC 76 ms
76,344 KB
testcase_17 AC 44 ms
66,328 KB
testcase_18 AC 91 ms
76,596 KB
testcase_19 AC 92 ms
76,300 KB
testcase_20 AC 91 ms
75,980 KB
testcase_21 AC 87 ms
75,852 KB
testcase_22 AC 86 ms
75,948 KB
testcase_23 AC 85 ms
75,912 KB
testcase_24 AC 89 ms
76,696 KB
testcase_25 AC 90 ms
76,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import io, os
input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

mod = 998244353

def main():

    n = int(input())
    C = []
    for i in range(n):
        temp = list(map(int, input().split()))
        temp = temp[1:]
        if temp:
            temp = [i-1 for i in temp]
        v = 0
        for i in temp:
            v |= (1<<i)
        C.append(v)
    #print(C)
    dp = [[0]*(1<<12) for i in range(2)]
    dp[0][0] = 1
    for i in range(n):
        nx = [[0]*(1<<12) for i in range(2)]
        for j in range(2):
            for s in range(1<<12):
                nx[j][s] = dp[j][s]
        v = C[i]
        for j in range(2):
            for s in range(1<<12):
                if j == 0:
                    if s == 0:
                        nx[j+1][s|v] += dp[j][s]
                        nx[j+1][s|v] %= mod
                    else:
                        break
                else:
                    nx[j][s&v] += dp[j][s]
                    nx[j][s&v] %= mod
        dp = nx
    ans = 0
    ans += dp[1][0]
    ans %= mod
    print(ans)

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