結果
問題 | No.1689 Set Cards |
ユーザー | brthyyjp |
提出日時 | 2021-09-24 22:50:27 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,207 bytes |
コンパイル時間 | 153 ms |
コンパイル使用メモリ | 82,140 KB |
実行使用メモリ | 327,120 KB |
最終ジャッジ日時 | 2024-07-05 11:06:43 |
合計ジャッジ時間 | 4,500 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
68,044 KB |
testcase_01 | AC | 42 ms
60,024 KB |
testcase_02 | AC | 153 ms
77,004 KB |
testcase_03 | AC | 76 ms
72,912 KB |
testcase_04 | AC | 75 ms
72,624 KB |
testcase_05 | AC | 75 ms
72,536 KB |
testcase_06 | AC | 75 ms
72,472 KB |
testcase_07 | AC | 48 ms
64,272 KB |
testcase_08 | AC | 36 ms
58,536 KB |
testcase_09 | AC | 36 ms
58,828 KB |
testcase_10 | AC | 54 ms
66,188 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
import sys import io, os input = sys.stdin.buffer.readline #input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline def main(): n = int(input()) C = [] for i in range(n): temp = list(map(int, input().split())) temp = temp[1:] if temp: temp = [i-1 for i in temp] v = 0 for i in temp: v |= (1<<i) C.append(v) #print(C) mod = 998244353 dp = [[0]*(1<<12) for i in range(n+1)] dp[0][0] = 1 for i in range(n): nx = [[0]*(1<<12) for i in range(n+1)] for j in range(n+1): for s in range(1<<12): nx[j][s] = dp[j][s] v = C[i] for j in range(n): for s in range(1<<12): if j == 0: if s == 0: nx[j+1][s|v] += dp[j][s] nx[j+1][s|v] %= mod else: break else: nx[j+1][s&v] += dp[j][s] nx[j+1][s&v] %= mod dp = nx ans = 0 for j in range(1, n+1): ans += dp[j][0] ans %= mod print(ans) if __name__ == '__main__': main()