結果

問題 No.1689 Set Cards
ユーザー mymelochanmymelochan
提出日時 2021-09-25 00:46:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 357 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 81,892 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-07-05 11:42:46
合計ジャッジ時間 2,758 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
58,624 KB
testcase_01 AC 45 ms
58,752 KB
testcase_02 AC 47 ms
59,904 KB
testcase_03 AC 47 ms
59,392 KB
testcase_04 AC 45 ms
59,392 KB
testcase_05 AC 46 ms
59,392 KB
testcase_06 AC 45 ms
59,008 KB
testcase_07 AC 46 ms
59,008 KB
testcase_08 AC 47 ms
57,856 KB
testcase_09 AC 42 ms
58,240 KB
testcase_10 AC 46 ms
59,136 KB
testcase_11 AC 84 ms
76,672 KB
testcase_12 AC 89 ms
76,544 KB
testcase_13 AC 91 ms
76,416 KB
testcase_14 AC 85 ms
76,160 KB
testcase_15 AC 55 ms
64,128 KB
testcase_16 AC 83 ms
76,288 KB
testcase_17 AC 51 ms
62,080 KB
testcase_18 AC 87 ms
76,544 KB
testcase_19 AC 85 ms
76,544 KB
testcase_20 AC 84 ms
76,544 KB
testcase_21 AC 76 ms
76,032 KB
testcase_22 AC 81 ms
75,904 KB
testcase_23 AC 82 ms
75,776 KB
testcase_24 AC 85 ms
76,800 KB
testcase_25 AC 84 ms
76,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
MOD = 998244353
B = []
for _ in range(N):
    L = list(map(int,input().split()))
    C = L[1:]
    b = 0
    for c in C:
        b += 1<<(c-1)
    B.append(b)

dp = [0]*(1<<12)
dp[-1] = 1
for b in B:
    ndp = dp.copy()
    for bit in range(1<<12):
        a = bit&b
        ndp[a] += dp[bit]
        ndp[a] %= MOD
    dp = ndp
print(dp[0])
0