結果

問題 No.1689 Set Cards
ユーザー ayaoniayaoni
提出日時 2021-09-24 21:46:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 473 ms / 2,000 ms
コード長 556 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-07-05 10:22:43
合計ジャッジ時間 3,899 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
57,472 KB
testcase_01 AC 46 ms
58,112 KB
testcase_02 AC 56 ms
62,976 KB
testcase_03 AC 53 ms
62,464 KB
testcase_04 AC 54 ms
62,208 KB
testcase_05 AC 54 ms
62,464 KB
testcase_06 AC 53 ms
61,696 KB
testcase_07 AC 49 ms
59,776 KB
testcase_08 AC 44 ms
57,088 KB
testcase_09 AC 43 ms
57,344 KB
testcase_10 AC 47 ms
59,008 KB
testcase_11 AC 278 ms
76,416 KB
testcase_12 AC 273 ms
76,416 KB
testcase_13 AC 86 ms
76,544 KB
testcase_14 AC 116 ms
76,800 KB
testcase_15 AC 85 ms
72,448 KB
testcase_16 AC 121 ms
76,032 KB
testcase_17 AC 69 ms
67,584 KB
testcase_18 AC 285 ms
76,800 KB
testcase_19 AC 81 ms
76,032 KB
testcase_20 AC 81 ms
76,416 KB
testcase_21 AC 75 ms
76,160 KB
testcase_22 AC 76 ms
76,160 KB
testcase_23 AC 78 ms
76,160 KB
testcase_24 AC 473 ms
76,800 KB
testcase_25 AC 164 ms
76,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
sys.setrecursionlimit(10**7)

N = int(input())
dp = [0]*(1<<12)
dp[-1] = 1
mod = 998244353
for _ in range(N):
    new_dp = dp[:]
    X = list(map(int,input().split()))
    C = [x-1 for x in X[1:]]
    set_C = set(C)
    for i in range(1<<12):
        d = dp[i]
        if not d:
            continue
        new_id = 0
        for j in range(12):
            if (i>>j) & 1 and j in set_C:
                new_id ^= 1<<j
        new_dp[new_id] += d
        new_dp[new_id] %= mod
    dp = new_dp

ans = dp[0]
print(ans)
0