結果

問題 No.1689 Set Cards
ユーザー chineristACchineristAC
提出日時 2021-09-24 21:39:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 443 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,696 KB
最終ジャッジ日時 2024-07-05 10:15:31
合計ジャッジ時間 2,710 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
62,208 KB
testcase_01 AC 52 ms
62,080 KB
testcase_02 AC 57 ms
63,488 KB
testcase_03 AC 53 ms
62,976 KB
testcase_04 AC 51 ms
62,976 KB
testcase_05 AC 53 ms
63,616 KB
testcase_06 AC 50 ms
62,848 KB
testcase_07 AC 51 ms
62,592 KB
testcase_08 AC 47 ms
60,544 KB
testcase_09 AC 47 ms
60,672 KB
testcase_10 AC 53 ms
62,720 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 92 ms
77,056 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 85 ms
77,440 KB
testcase_20 AC 87 ms
77,312 KB
testcase_21 AC 78 ms
77,440 KB
testcase_22 AC 79 ms
77,184 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

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)
    
    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])
0