結果

問題 No.1689 Set Cards
ユーザー puznekopuzneko
提出日時 2021-11-23 23:03:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 548 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 90,656 KB
最終ジャッジ日時 2024-06-25 20:50:13
合計ジャッジ時間 3,427 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
61,264 KB
testcase_01 AC 45 ms
59,816 KB
testcase_02 AC 47 ms
61,720 KB
testcase_03 AC 47 ms
60,632 KB
testcase_04 AC 46 ms
60,168 KB
testcase_05 AC 51 ms
61,604 KB
testcase_06 AC 47 ms
60,732 KB
testcase_07 AC 46 ms
60,364 KB
testcase_08 AC 45 ms
59,292 KB
testcase_09 AC 44 ms
59,672 KB
testcase_10 AC 46 ms
61,384 KB
testcase_11 AC 109 ms
88,580 KB
testcase_12 AC 110 ms
88,740 KB
testcase_13 AC 105 ms
89,224 KB
testcase_14 AC 110 ms
88,828 KB
testcase_15 AC 57 ms
64,984 KB
testcase_16 AC 80 ms
74,580 KB
testcase_17 AC 53 ms
63,340 KB
testcase_18 AC 107 ms
88,484 KB
testcase_19 AC 107 ms
88,388 KB
testcase_20 AC 108 ms
88,164 KB
testcase_21 AC 106 ms
90,656 KB
testcase_22 AC 105 ms
90,480 KB
testcase_23 AC 107 ms
90,332 KB
testcase_24 AC 107 ms
88,524 KB
testcase_25 AC 105 ms
88,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
n, *indata = map(int, stdin.read().split())
p = 998244353
setlist = [0 for i in range(n)]
offset = 0
for i in range(n):
    k = indata[offset]
    offset += 1
    for j in range(k):
        setlist[i] += 1 << (indata[offset+j]-1)
    offset += k

dp = [[0 for i in range(1<<12)] for j in range(n+1)]
dp[0][(1<<12)-1] = 1

for i in range(n):
    for j in range(1<<12):
        dp[i+1][j] = (dp[i+1][j] + dp[i][j]) % p
        dp[i+1][(j & setlist[i])] = (dp[i+1][(j & setlist[i])] + dp[i][j]) % p

print("{}".format(dp[n][0]))
0