結果

問題 No.1689 Set Cards
ユーザー ああいいああいい
提出日時 2022-03-04 10:42:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 500 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 72,576 KB
最終ジャッジ日時 2024-07-18 07:58:15
合計ジャッジ時間 2,377 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
63,744 KB
testcase_01 AC 50 ms
65,280 KB
testcase_02 AC 47 ms
64,384 KB
testcase_03 AC 46 ms
64,384 KB
testcase_04 AC 47 ms
64,512 KB
testcase_05 AC 47 ms
64,384 KB
testcase_06 AC 47 ms
64,640 KB
testcase_07 AC 48 ms
64,000 KB
testcase_08 AC 50 ms
65,280 KB
testcase_09 AC 48 ms
64,128 KB
testcase_10 AC 48 ms
63,872 KB
testcase_11 AC 58 ms
72,576 KB
testcase_12 AC 56 ms
72,320 KB
testcase_13 AC 50 ms
68,004 KB
testcase_14 AC 56 ms
71,040 KB
testcase_15 AC 48 ms
65,280 KB
testcase_16 AC 55 ms
66,944 KB
testcase_17 AC 44 ms
65,024 KB
testcase_18 AC 55 ms
70,528 KB
testcase_19 AC 55 ms
70,912 KB
testcase_20 AC 56 ms
70,912 KB
testcase_21 AC 52 ms
67,840 KB
testcase_22 AC 50 ms
67,072 KB
testcase_23 AC 50 ms
66,560 KB
testcase_24 AC 54 ms
70,400 KB
testcase_25 AC 61 ms
70,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

dat = [0] * (1 << 12)
for _ in range(N):
    k,*l = map(int,input().split())
    bit = 0
    for i in l:
        bit |= 1 << (i-1)
    dat[bit] += 1
P = 998244353
for i in range(12):
    for bit in range(1 << 12):
        if bit & (1 << i):
            dat[bit ^ (1 << i)] += dat[bit]
ans = pow(2,N,P)-1
for bit in range(1,1 << 12):
    if bin(bit).count('1') % 2 == 0:
        c = 1
    else:
        c = -1
    tmp = pow(2,dat[bit],P) - 1
    ans = (ans + c * tmp) % P
print(ans)
0