結果

問題 No.1689 Set Cards
ユーザー SidewaysOwlSidewaysOwl
提出日時 2021-09-25 14:34:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 987 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 77,824 KB
最終ジャッジ日時 2024-07-05 12:05:10
合計ジャッジ時間 3,370 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
61,100 KB
testcase_01 AC 45 ms
61,296 KB
testcase_02 AC 50 ms
64,456 KB
testcase_03 AC 53 ms
63,816 KB
testcase_04 AC 54 ms
65,484 KB
testcase_05 AC 52 ms
64,056 KB
testcase_06 AC 51 ms
64,916 KB
testcase_07 AC 53 ms
61,520 KB
testcase_08 AC 46 ms
59,304 KB
testcase_09 AC 45 ms
59,260 KB
testcase_10 AC 50 ms
62,820 KB
testcase_11 AC 154 ms
77,116 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 129 ms
77,000 KB
testcase_15 AC 82 ms
75,924 KB
testcase_16 AC 110 ms
76,672 KB
testcase_17 AC 67 ms
72,680 KB
testcase_18 AC 170 ms
76,908 KB
testcase_19 AC 91 ms
76,796 KB
testcase_20 AC 105 ms
76,908 KB
testcase_21 AC 161 ms
77,264 KB
testcase_22 AC 88 ms
76,576 KB
testcase_23 AC 134 ms
76,692 KB
testcase_24 AC 150 ms
77,272 KB
testcase_25 AC 106 ms
77,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
n = int(input())

dp = [[0] * (1<<12) for _ in range(2)]
dp[0][0] = 1
for i in range(n):
    n_dp =  [[0] * (1<<12) for _ in range(2)]
    kc = list(map(int,input().split()))
    bit = 0
    for j in range(1,kc[0] + 1):
        bit += 1 << (kc[j]-1)
    for j in range(1 << 12):
        n_dp[0][j] += dp[0][j]
        n_dp[1][j] += dp[1][j]
        if j == 0:
            if bit != 0:
                n_dp[0][bit] += 1
                n_dp[0][bit] %= mod
            else:
                n_dp[1][0] += n_dp[1][0] + 1 
        else:
            if dp[0][j] > 0:
                if j & bit:
                    n_dp[0][j & bit] += dp[0][j]
                    n_dp[0][j & bit] %= mod
                else:
                    n_dp[1][j | bit] += dp[0][j]
                    n_dp[1][j | bit] %= mod
            if  dp[1][j] > 0:
                n_dp[1][j | bit] += dp[1][j]
                n_dp[1][j | bit] %= mod
#     print(n_dp[0])
    dp = n_dp
print(sum(dp[1]) % mod)
0