結果

問題 No.1689 Set Cards
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-09-24 22:21:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 68,864 KB
最終ジャッジ日時 2024-07-05 10:50:55
合計ジャッジ時間 2,331 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
59,704 KB
testcase_01 AC 43 ms
59,264 KB
testcase_02 AC 45 ms
59,776 KB
testcase_03 AC 41 ms
59,648 KB
testcase_04 AC 41 ms
59,520 KB
testcase_05 AC 41 ms
59,520 KB
testcase_06 AC 41 ms
59,520 KB
testcase_07 AC 41 ms
59,648 KB
testcase_08 AC 38 ms
58,496 KB
testcase_09 AC 39 ms
58,752 KB
testcase_10 AC 40 ms
59,588 KB
testcase_11 AC 73 ms
68,608 KB
testcase_12 AC 71 ms
68,608 KB
testcase_13 AC 67 ms
66,944 KB
testcase_14 AC 72 ms
68,864 KB
testcase_15 AC 46 ms
60,416 KB
testcase_16 AC 60 ms
65,280 KB
testcase_17 AC 45 ms
60,288 KB
testcase_18 AC 66 ms
66,688 KB
testcase_19 AC 65 ms
66,688 KB
testcase_20 AC 65 ms
66,944 KB
testcase_21 AC 60 ms
64,524 KB
testcase_22 AC 63 ms
65,408 KB
testcase_23 AC 63 ms
65,024 KB
testcase_24 AC 65 ms
67,168 KB
testcase_25 AC 65 ms
66,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
mod = 998244353
dp = [0]*(1<<12)
for i in range(n):
    L = list(map(int,input().split()))
    count = 0
    for c in L[1:]:
        count |= 1<<(c-1)
    for j in range(1<<12):
        dp[j&count] += dp[j]
        dp[j&count] %= mod
    dp[count] += 1
ans = pow(2,n,mod)-1
for i in range(1,1<<12):
    ans -= dp[i]
    ans %= mod
print(ans)
0