結果

問題 No.1689 Set Cards
ユーザー roarisroaris
提出日時 2021-09-24 22:06:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 575 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 68,192 KB
最終ジャッジ日時 2024-07-05 10:38:44
合計ジャッジ時間 2,405 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
64,000 KB
testcase_01 AC 48 ms
63,232 KB
testcase_02 AC 49 ms
63,068 KB
testcase_03 AC 50 ms
64,128 KB
testcase_04 AC 49 ms
63,872 KB
testcase_05 AC 51 ms
63,872 KB
testcase_06 AC 49 ms
63,104 KB
testcase_07 AC 52 ms
64,768 KB
testcase_08 AC 49 ms
62,824 KB
testcase_09 AC 53 ms
62,976 KB
testcase_10 AC 49 ms
63,360 KB
testcase_11 AC 63 ms
67,328 KB
testcase_12 AC 69 ms
68,048 KB
testcase_13 AC 62 ms
67,584 KB
testcase_14 AC 67 ms
67,328 KB
testcase_15 AC 55 ms
64,384 KB
testcase_16 AC 60 ms
67,328 KB
testcase_17 AC 51 ms
64,640 KB
testcase_18 AC 69 ms
67,456 KB
testcase_19 AC 61 ms
67,584 KB
testcase_20 AC 63 ms
67,712 KB
testcase_21 AC 55 ms
63,744 KB
testcase_22 AC 56 ms
64,768 KB
testcase_23 AC 56 ms
64,440 KB
testcase_24 AC 67 ms
68,192 KB
testcase_25 AC 67 ms
67,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N = int(input())
S = []

for _ in range(N):
    kC = list(map(int, input().split()))
    Si = 0
    
    for Ci in kC[1:]:
        Si += 1<<(Ci-1)
    
    S.append(Si)

ans = 0
MOD = 998244353

for M in range(1<<12):
    c = 0
    
    for Si in S:
        if Si&M==M:
            c += 1
    
    bit_c = 0
    
    for i in range(12):
        if (M>>i)&1:
            bit_c += 1
    
    if bit_c%2==0:
        ans += pow(2, c, MOD)-1
    else:
        ans -= pow(2, c, MOD)-1
    
    ans %= MOD

print(ans)
0