結果

問題 No.1689 Set Cards
ユーザー mymelochanmymelochan
提出日時 2021-09-25 01:45:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 360 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 70,784 KB
最終ジャッジ日時 2024-07-05 11:53:20
合計ジャッジ時間 2,407 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
61,824 KB
testcase_01 AC 49 ms
62,336 KB
testcase_02 AC 45 ms
61,952 KB
testcase_03 AC 47 ms
62,336 KB
testcase_04 AC 46 ms
62,464 KB
testcase_05 AC 45 ms
61,952 KB
testcase_06 AC 44 ms
62,080 KB
testcase_07 AC 44 ms
61,824 KB
testcase_08 AC 44 ms
62,208 KB
testcase_09 AC 46 ms
62,592 KB
testcase_10 AC 48 ms
61,696 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 64 ms
68,608 KB
testcase_20 AC 65 ms
68,864 KB
testcase_21 AC 54 ms
63,744 KB
testcase_22 AC 56 ms
64,640 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
MOD = 998244353
B = []
for _ in range(N):
    L = list(map(int,input().split()))
    C = L[1:]
    b = 0
    for c in C:
        b += 1<<(c-1)
    B.append(b)

ans = 0
for bit in range(1<<12):
    cnt = 0
    sgn = (-1)**bin(bit).count("1")
    for b in B:
        if bit&b == bit:
            cnt += 1
    ans += pow(2,cnt,MOD)*sgn
print(ans)
0