結果
問題 | No.1689 Set Cards |
ユーザー | brthyyjp |
提出日時 | 2021-09-24 22:46:30 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 789 bytes |
コンパイル時間 | 160 ms |
コンパイル使用メモリ | 82,732 KB |
実行使用メモリ | 360,652 KB |
最終ジャッジ日時 | 2024-07-05 11:04:41 |
合計ジャッジ時間 | 4,668 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 49 ms
73,008 KB |
testcase_01 | AC | 50 ms
65,980 KB |
testcase_02 | AC | 170 ms
82,092 KB |
testcase_03 | AC | 91 ms
77,756 KB |
testcase_04 | AC | 91 ms
77,692 KB |
testcase_05 | AC | 90 ms
77,988 KB |
testcase_06 | AC | 92 ms
78,132 KB |
testcase_07 | AC | 58 ms
68,132 KB |
testcase_08 | AC | 38 ms
60,952 KB |
testcase_09 | AC | 39 ms
60,760 KB |
testcase_10 | AC | 67 ms
72,304 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 | -- | - |
ソースコード
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] C.append(temp) #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 = 0 for c in C[i]: v |= (1<<c) for j in range(n): for s in range(1<<12): if j == 0: nx[j+1][s|v] += dp[j][s] nx[j+1][s|v] %= mod 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)