結果

問題 No.1689 Set Cards
ユーザー wolgnikwolgnik
提出日時 2021-09-24 22:21:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 324 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 81,796 KB
実行使用メモリ 66,120 KB
最終ジャッジ日時 2024-07-05 10:51:46
合計ジャッジ時間 2,359 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
58,680 KB
testcase_01 AC 42 ms
58,924 KB
testcase_02 AC 43 ms
59,416 KB
testcase_03 AC 43 ms
60,216 KB
testcase_04 AC 43 ms
59,368 KB
testcase_05 AC 43 ms
58,972 KB
testcase_06 AC 43 ms
59,516 KB
testcase_07 AC 43 ms
58,736 KB
testcase_08 AC 41 ms
58,212 KB
testcase_09 AC 41 ms
58,820 KB
testcase_10 AC 42 ms
59,404 KB
testcase_11 AC 62 ms
66,120 KB
testcase_12 AC 64 ms
64,844 KB
testcase_13 AC 62 ms
65,120 KB
testcase_14 AC 60 ms
65,092 KB
testcase_15 AC 47 ms
60,408 KB
testcase_16 AC 56 ms
62,532 KB
testcase_17 AC 45 ms
60,672 KB
testcase_18 AC 61 ms
63,868 KB
testcase_19 AC 61 ms
65,100 KB
testcase_20 AC 60 ms
64,492 KB
testcase_21 AC 56 ms
62,672 KB
testcase_22 AC 59 ms
62,672 KB
testcase_23 AC 60 ms
62,196 KB
testcase_24 AC 61 ms
64,240 KB
testcase_25 AC 59 ms
63,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N = int(input())
mod = 998244353
m = 12
dp = [0] * (1 << m)
for _ in range(N):
  c = list(map(int, input().split()))
  t = 0
  if c[0]:
    for x in c[1: ]: t |= 1 << (x - 1)

  for i in range(1 << m):
    dp[i & t] += dp[i]
    dp[i & t] %= mod
  dp[t] += 1
  dp[t] %= mod
print(dp[0])
0