結果

問題 No.1689 Set Cards
ユーザー vwxyzvwxyz
提出日時 2024-06-02 10:04:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 354 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 77,016 KB
最終ジャッジ日時 2024-06-02 10:04:49
合計ジャッジ時間 3,127 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
76,160 KB
testcase_01 AC 75 ms
76,532 KB
testcase_02 AC 85 ms
76,408 KB
testcase_03 AC 72 ms
76,520 KB
testcase_04 AC 67 ms
76,144 KB
testcase_05 AC 71 ms
76,288 KB
testcase_06 AC 73 ms
76,468 KB
testcase_07 AC 76 ms
76,416 KB
testcase_08 AC 67 ms
76,032 KB
testcase_09 AC 67 ms
76,180 KB
testcase_10 AC 63 ms
76,156 KB
testcase_11 AC 91 ms
76,896 KB
testcase_12 AC 85 ms
76,672 KB
testcase_13 AC 86 ms
76,480 KB
testcase_14 AC 96 ms
76,728 KB
testcase_15 AC 72 ms
76,160 KB
testcase_16 AC 73 ms
76,184 KB
testcase_17 AC 75 ms
76,416 KB
testcase_18 AC 95 ms
76,544 KB
testcase_19 AC 81 ms
76,800 KB
testcase_20 AC 80 ms
76,940 KB
testcase_21 AC 73 ms
76,672 KB
testcase_22 AC 83 ms
76,340 KB
testcase_23 AC 73 ms
76,544 KB
testcase_24 AC 84 ms
76,672 KB
testcase_25 AC 85 ms
77,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
C=[0]*N
for n in range(N):
    K,*c=map(int,input().split())
    for k in range(K):
        c[k]-=1
        C[n]|=1<<c[k]
mod=998244353
ans=0
M=12
for bit in range(1<<M):
    cnt=0
    for n in range(N):
        if bit==C[n]&bit:
            cnt+=1
    ans+=pow(2,cnt,mod)*(-1)**sum(1 for m in range(M) if bit&1<<m)
    ans%=mod
print(ans)
0