結果

問題 No.1689 Set Cards
ユーザー mymelochanmymelochan
提出日時 2021-09-25 02:02:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 379 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 70,272 KB
最終ジャッジ日時 2024-07-05 11:53:29
合計ジャッジ時間 2,376 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
61,696 KB
testcase_01 AC 46 ms
62,720 KB
testcase_02 AC 44 ms
61,568 KB
testcase_03 AC 46 ms
62,208 KB
testcase_04 AC 44 ms
61,952 KB
testcase_05 AC 44 ms
62,080 KB
testcase_06 AC 44 ms
61,568 KB
testcase_07 AC 45 ms
61,824 KB
testcase_08 AC 44 ms
62,592 KB
testcase_09 AC 46 ms
62,720 KB
testcase_10 AC 44 ms
62,208 KB
testcase_11 AC 68 ms
68,864 KB
testcase_12 AC 74 ms
70,016 KB
testcase_13 AC 68 ms
70,272 KB
testcase_14 AC 72 ms
69,120 KB
testcase_15 AC 52 ms
63,232 KB
testcase_16 AC 63 ms
69,504 KB
testcase_17 AC 49 ms
62,720 KB
testcase_18 AC 70 ms
68,992 KB
testcase_19 AC 63 ms
68,864 KB
testcase_20 AC 61 ms
68,864 KB
testcase_21 AC 52 ms
63,488 KB
testcase_22 AC 57 ms
64,256 KB
testcase_23 AC 58 ms
64,128 KB
testcase_24 AC 70 ms
69,120 KB
testcase_25 AC 71 ms
68,864 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)

ans = 0
for bit in range(1<<12):
    cnt = 0
    sgn = (-1)**bin(bit).count("1")
    for b in B:
        if bit&b == bit:
            cnt += 1
    ans += (pow(2,cnt,MOD)-1)*sgn
    ans %= MOD
print(ans)
0