結果

問題 No.1689 Set Cards
ユーザー H20H20
提出日時 2021-09-24 22:17:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 389 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 77,092 KB
最終ジャッジ日時 2024-07-05 10:47:50
合計ジャッジ時間 2,298 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
55,316 KB
testcase_01 AC 35 ms
53,660 KB
testcase_02 AC 36 ms
55,684 KB
testcase_03 AC 40 ms
61,808 KB
testcase_04 AC 40 ms
61,356 KB
testcase_05 AC 41 ms
61,760 KB
testcase_06 AC 38 ms
60,548 KB
testcase_07 AC 39 ms
60,340 KB
testcase_08 AC 34 ms
53,512 KB
testcase_09 AC 38 ms
59,136 KB
testcase_10 AC 40 ms
59,776 KB
testcase_11 AC 78 ms
76,980 KB
testcase_12 AC 76 ms
77,092 KB
testcase_13 AC 74 ms
76,928 KB
testcase_14 AC 62 ms
71,688 KB
testcase_15 AC 48 ms
67,212 KB
testcase_16 AC 68 ms
76,800 KB
testcase_17 AC 52 ms
64,384 KB
testcase_18 AC 89 ms
76,896 KB
testcase_19 AC 69 ms
76,988 KB
testcase_20 AC 77 ms
76,916 KB
testcase_21 AC 44 ms
58,368 KB
testcase_22 AC 47 ms
65,756 KB
testcase_23 AC 54 ms
73,860 KB
testcase_24 AC 91 ms
77,004 KB
testcase_25 AC 73 ms
76,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import copy
N = int(input())
L = []
mod = 998244353
for _ in range(N):
    A = list(map(int, input().split()))
    temp = 0
    for i in range(1,A[0]+1):
        temp+=2**(A[i]-1)
    L.append(temp)
DP = [0]*(max(L)+1)
for l in L:
    NDP = copy.copy(DP)
    for i in range(len(DP)):
        if DP[i]>0:
            NDP[i&l]=(NDP[i&l]+DP[i])%mod
    NDP[l]+=1
    DP = NDP
print(DP[0]%mod)
0