結果

問題 No.1689 Set Cards
ユーザー chineristACchineristAC
提出日時 2021-09-24 21:53:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 470 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 77,184 KB
最終ジャッジ日時 2024-07-05 10:28:42
合計ジャッジ時間 2,804 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
61,952 KB
testcase_01 AC 51 ms
62,080 KB
testcase_02 AC 52 ms
63,232 KB
testcase_03 AC 52 ms
62,720 KB
testcase_04 AC 51 ms
62,720 KB
testcase_05 AC 52 ms
63,616 KB
testcase_06 AC 51 ms
62,720 KB
testcase_07 AC 50 ms
62,464 KB
testcase_08 AC 47 ms
60,544 KB
testcase_09 AC 47 ms
60,672 KB
testcase_10 AC 52 ms
62,464 KB
testcase_11 AC 89 ms
77,056 KB
testcase_12 AC 85 ms
76,800 KB
testcase_13 AC 86 ms
77,184 KB
testcase_14 AC 85 ms
77,172 KB
testcase_15 AC 58 ms
67,584 KB
testcase_16 AC 77 ms
76,800 KB
testcase_17 AC 56 ms
65,536 KB
testcase_18 AC 90 ms
76,928 KB
testcase_19 AC 85 ms
76,800 KB
testcase_20 AC 83 ms
77,120 KB
testcase_21 AC 75 ms
76,928 KB
testcase_22 AC 79 ms
77,184 KB
testcase_23 AC 78 ms
76,928 KB
testcase_24 AC 86 ms
77,056 KB
testcase_25 AC 85 ms
76,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

mod = 998244353

N = int(input())

dp = [0 for i in range(4096)]
dp[4095] = 1

for i in range(N):
    k,*C = li()
    tmp = 0
    for c in C:
        tmp += pow(2,c-1)
    assert len(C)==k
    
    ndp = [dp[j] for j in range(4096)]
    for j in range(4096):
        ndp[j&tmp] += dp[j]
        ndp[j] %= mod
    dp = ndp

print(dp[0] % mod)
0