結果

問題 No.1689 Set Cards
ユーザー とりゐとりゐ
提出日時 2021-09-24 21:46:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 409 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 70,144 KB
最終ジャッジ日時 2024-07-05 10:22:01
合計ジャッジ時間 2,518 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
61,568 KB
testcase_01 AC 45 ms
61,440 KB
testcase_02 AC 51 ms
61,312 KB
testcase_03 AC 50 ms
62,592 KB
testcase_04 AC 46 ms
62,080 KB
testcase_05 AC 52 ms
62,124 KB
testcase_06 AC 47 ms
61,568 KB
testcase_07 AC 49 ms
61,952 KB
testcase_08 AC 45 ms
61,056 KB
testcase_09 AC 49 ms
62,336 KB
testcase_10 AC 46 ms
61,952 KB
testcase_11 AC 74 ms
69,376 KB
testcase_12 AC 73 ms
70,016 KB
testcase_13 AC 72 ms
70,016 KB
testcase_14 AC 71 ms
69,120 KB
testcase_15 AC 56 ms
63,360 KB
testcase_16 AC 69 ms
70,144 KB
testcase_17 AC 49 ms
62,720 KB
testcase_18 AC 77 ms
68,736 KB
testcase_19 AC 81 ms
69,120 KB
testcase_20 AC 81 ms
69,376 KB
testcase_21 AC 62 ms
63,872 KB
testcase_22 AC 64 ms
65,152 KB
testcase_23 AC 65 ms
64,640 KB
testcase_24 AC 80 ms
68,992 KB
testcase_25 AC 74 ms
69,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
cnt=[0]*(2**13)
a=[]
for i in range(n):
  b=list(map(int,input().split()))
  tmp=0
  for j in b[1:]:
    tmp+=2**j
  a.append(tmp)
mod=998244353
ans=0
for bit in range(1,2**13):
  tmp=0
  for i in a:
    if bit&i==bit:
      tmp+=1
  num=pow(2,tmp,mod)-1
  c=0
  for i in range(13):
    if bit&(1<<i)!=0:
      c+=1
  if c%2==0:
    ans-=num
  else:
    ans+=num
print((pow(2,n,mod)-ans-1)%mod)
0