結果

問題 No.1689 Set Cards
ユーザー qibqib
提出日時 2022-12-12 00:42:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 454 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 76,884 KB
最終ジャッジ日時 2024-10-15 19:43:23
合計ジャッジ時間 3,077 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
58,860 KB
testcase_01 AC 44 ms
59,032 KB
testcase_02 AC 48 ms
61,524 KB
testcase_03 AC 47 ms
60,524 KB
testcase_04 AC 47 ms
60,640 KB
testcase_05 AC 47 ms
61,512 KB
testcase_06 AC 46 ms
60,924 KB
testcase_07 AC 46 ms
60,332 KB
testcase_08 AC 42 ms
59,756 KB
testcase_09 AC 43 ms
58,480 KB
testcase_10 AC 45 ms
59,492 KB
testcase_11 AC 96 ms
76,348 KB
testcase_12 AC 95 ms
76,392 KB
testcase_13 AC 88 ms
76,352 KB
testcase_14 AC 89 ms
76,884 KB
testcase_15 AC 56 ms
67,208 KB
testcase_16 AC 78 ms
76,156 KB
testcase_17 AC 53 ms
64,512 KB
testcase_18 AC 96 ms
76,212 KB
testcase_19 AC 83 ms
76,604 KB
testcase_20 AC 83 ms
76,364 KB
testcase_21 AC 78 ms
76,120 KB
testcase_22 AC 77 ms
76,300 KB
testcase_23 AC 77 ms
76,732 KB
testcase_24 AC 102 ms
76,368 KB
testcase_25 AC 88 ms
76,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

# No. 1689
n = int(input())

dp = [0 for _ in range(1 << 12)]
dp[-1] = 1
for _ in range(n):
  row = list(map(int, input().split()))
  mask = 0
  for i in range(row[0]):
    mask |= (1 << (row[i + 1] - 1))

  ndp = [0 for _ in range(1 << 12)]
  for cur in range(1 << 12):
    if dp[cur] == 0:
      continue

    ndp[cur] = (ndp[cur] + dp[cur]) % MOD
    nxt = cur & mask
    ndp[nxt] = (ndp[nxt] + dp[cur]) % MOD
  dp = ndp

print(dp[0])
0