結果

問題 No.1689 Set Cards
ユーザー tassei903tassei903
提出日時 2021-09-24 22:32:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 716 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,356 KB
最終ジャッジ日時 2024-07-05 10:58:44
合計ジャッジ時間 2,581 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
60,152 KB
testcase_01 AC 44 ms
60,364 KB
testcase_02 AC 48 ms
62,032 KB
testcase_03 AC 49 ms
61,168 KB
testcase_04 AC 49 ms
62,312 KB
testcase_05 AC 48 ms
61,588 KB
testcase_06 AC 45 ms
60,240 KB
testcase_07 AC 43 ms
60,032 KB
testcase_08 AC 41 ms
58,928 KB
testcase_09 AC 46 ms
58,540 KB
testcase_10 AC 43 ms
60,672 KB
testcase_11 AC 78 ms
76,324 KB
testcase_12 AC 81 ms
76,356 KB
testcase_13 AC 80 ms
76,196 KB
testcase_14 AC 86 ms
76,284 KB
testcase_15 AC 51 ms
65,752 KB
testcase_16 AC 68 ms
74,524 KB
testcase_17 AC 48 ms
63,008 KB
testcase_18 AC 81 ms
76,112 KB
testcase_19 AC 77 ms
76,156 KB
testcase_20 AC 78 ms
76,224 KB
testcase_21 AC 70 ms
76,292 KB
testcase_22 AC 74 ms
75,824 KB
testcase_23 AC 72 ms
76,076 KB
testcase_24 AC 77 ms
76,144 KB
testcase_25 AC 78 ms
76,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
sys.setrecursionlimit(10**7)
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
n = ni()
m = 12
dp = [0]*(1<<m)
dp[-1] = 1
mod = 998244353
for i in range(n):
    p = [0]*(1<<m)
    dp,p = p,dp
    c = 0
    q = na()
    k = q[0]
    for j in range(k):
        c+=1<<(q[j+1]-1)
    for j in range(1<<m):
        dp[j]+=p[j]
        dp[j]%=mod
        nj = j&c
        dp[nj]+=p[j]
        dp[nj]%=mod

print(dp[0])
0