結果

問題 No.1689 Set Cards
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-16 14:16:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 262 bytes
コンパイル時間 449 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,872 KB
最終ジャッジ日時 2024-10-16 14:16:32
合計ジャッジ時間 3,545 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
59,392 KB
testcase_01 AC 46 ms
59,776 KB
testcase_02 AC 47 ms
61,184 KB
testcase_03 AC 49 ms
61,056 KB
testcase_04 AC 47 ms
60,800 KB
testcase_05 AC 47 ms
60,800 KB
testcase_06 AC 47 ms
60,032 KB
testcase_07 AC 47 ms
59,904 KB
testcase_08 AC 45 ms
59,008 KB
testcase_09 AC 45 ms
58,880 KB
testcase_10 AC 45 ms
59,904 KB
testcase_11 AC 81 ms
76,872 KB
testcase_12 AC 86 ms
76,416 KB
testcase_13 AC 80 ms
76,032 KB
testcase_14 AC 85 ms
76,160 KB
testcase_15 AC 69 ms
69,504 KB
testcase_16 AC 79 ms
76,288 KB
testcase_17 AC 52 ms
65,664 KB
testcase_18 AC 86 ms
76,416 KB
testcase_19 AC 81 ms
76,672 KB
testcase_20 AC 79 ms
76,160 KB
testcase_21 AC 70 ms
75,648 KB
testcase_22 AC 72 ms
75,640 KB
testcase_23 AC 74 ms
75,392 KB
testcase_24 AC 84 ms
76,160 KB
testcase_25 AC 85 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
p=[0]*n
for i in range(n):
  k,*c,=list(map(int,input().split()))
  for j in range(k):
    p[i]|=1<<(c[j]-1)
M=998244353
l=12
a=0
for i in range(1<<l):
  c=0
  for v in p:
    c+=v&i==i
  a+=(pow(2,c,M)-1)*((-1)**(i.bit_count()%2))
  a%=M
print(a)
0