結果

問題 No.1689 Set Cards
ユーザー rlangevinrlangevin
提出日時 2023-02-14 23:21:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 437 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 77,176 KB
最終ジャッジ日時 2024-07-17 11:03:09
合計ジャッジ時間 2,839 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
59,908 KB
testcase_01 AC 45 ms
60,768 KB
testcase_02 AC 47 ms
61,648 KB
testcase_03 AC 45 ms
60,820 KB
testcase_04 AC 44 ms
61,372 KB
testcase_05 AC 46 ms
61,696 KB
testcase_06 AC 45 ms
60,720 KB
testcase_07 AC 44 ms
60,748 KB
testcase_08 AC 41 ms
59,104 KB
testcase_09 AC 41 ms
59,244 KB
testcase_10 AC 44 ms
61,520 KB
testcase_11 AC 86 ms
76,412 KB
testcase_12 AC 87 ms
76,704 KB
testcase_13 AC 89 ms
77,176 KB
testcase_14 AC 88 ms
76,468 KB
testcase_15 AC 53 ms
65,556 KB
testcase_16 AC 80 ms
76,460 KB
testcase_17 AC 51 ms
64,544 KB
testcase_18 AC 87 ms
76,588 KB
testcase_19 AC 89 ms
76,608 KB
testcase_20 AC 88 ms
76,588 KB
testcase_21 AC 80 ms
76,008 KB
testcase_22 AC 79 ms
76,136 KB
testcase_23 AC 79 ms
75,740 KB
testcase_24 AC 87 ms
76,472 KB
testcase_25 AC 86 ms
76,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
mod = 998244353
N2 = 1 << 12
D = []
for i in range(N):
    C = list(map(int, input().split()))
    v = 0
    for j in range(1, C[0] + 1):
        v |= 1 << (C[j] - 1)
    D.append(v)

pre = [0] * N2
pre[-1] = 1
for i in range(N):
    dp = [0] * N2
    for s in range(N2):
        dp[s & D[i]] += pre[s]
        dp[s] += pre[s]
        dp[s] %= mod
        dp[s & D[i]] %= mod
    pre, dp = dp, pre

print(pre[0])        
0