結果

問題 No.1689 Set Cards
ユーザー KeroruKeroru
提出日時 2021-09-25 09:01:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 226 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 67,944 KB
最終ジャッジ日時 2024-07-05 11:59:35
合計ジャッジ時間 2,406 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
60,400 KB
testcase_01 AC 41 ms
59,372 KB
testcase_02 AC 48 ms
60,244 KB
testcase_03 AC 45 ms
59,788 KB
testcase_04 AC 43 ms
59,908 KB
testcase_05 AC 43 ms
59,908 KB
testcase_06 AC 43 ms
58,984 KB
testcase_07 AC 43 ms
60,344 KB
testcase_08 AC 40 ms
57,920 KB
testcase_09 AC 40 ms
57,964 KB
testcase_10 AC 42 ms
59,660 KB
testcase_11 AC 66 ms
66,792 KB
testcase_12 AC 66 ms
66,980 KB
testcase_13 AC 66 ms
65,936 KB
testcase_14 AC 69 ms
67,308 KB
testcase_15 AC 46 ms
60,560 KB
testcase_16 AC 60 ms
64,216 KB
testcase_17 AC 46 ms
60,312 KB
testcase_18 AC 68 ms
67,944 KB
testcase_19 AC 64 ms
66,452 KB
testcase_20 AC 68 ms
67,660 KB
testcase_21 AC 63 ms
64,148 KB
testcase_22 AC 66 ms
64,948 KB
testcase_23 AC 66 ms
65,204 KB
testcase_24 AC 65 ms
66,116 KB
testcase_25 AC 66 ms
66,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
N=2**12
d=[0]*N
d[-1]=1
m=998244353
for i in range(n):
    b=0
    k,*c=map(int,input().split())
    for x in c:
        b+=1<<(x-1)
    for i in range(N):
        d[i&b]+=d[i]
        d[i&b]%=m
print(d[0])
    
0