結果
問題 | No.2313 Product of Subsequence (hard) |
ユーザー | Navier_Boltzmann |
提出日時 | 2023-11-22 13:30:59 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,638 bytes |
コンパイル時間 | 175 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 191,744 KB |
最終ジャッジ日時 | 2024-09-26 07:29:49 |
合計ジャッジ時間 | 12,357 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 137 ms
130,048 KB |
testcase_01 | AC | 134 ms
124,928 KB |
testcase_02 | AC | 136 ms
125,952 KB |
testcase_03 | AC | 189 ms
137,728 KB |
testcase_04 | AC | 191 ms
137,600 KB |
testcase_05 | AC | 213 ms
137,600 KB |
testcase_06 | AC | 174 ms
138,240 KB |
testcase_07 | AC | 198 ms
137,600 KB |
testcase_08 | AC | 1,582 ms
190,688 KB |
testcase_09 | AC | 362 ms
163,368 KB |
testcase_10 | AC | 916 ms
191,744 KB |
testcase_11 | AC | 396 ms
141,676 KB |
testcase_12 | AC | 786 ms
164,060 KB |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
ソースコード
import math from collections import Counter N,K = map(int,input().split()) A = list(map(int,input().split())) mod = 998244353 def md(n): lower_divisors , upper_divisors = [], [] i = 1 while i*i <= n: if n % i == 0: lower_divisors.append(i) if i != n // i: upper_divisors.append(n//i) i += 1 return lower_divisors + upper_divisors[::-1] class combination(): def __init__(self,N,p): self.fact = [1, 1] # fact[n] = (n! mod p) self.factinv = [1, 1] # factinv[n] = ((n!)^(-1) mod p) self.inv = [0, 1] # factinv 計算用 self.p = p for i in range(2, N + 1): self.fact.append((self.fact[-1] * i) % p) self.inv.append((-self.inv[p % i] * (p // i)) % p) self.factinv.append((self.factinv[-1] * self.inv[-1]) % p) def cmb(self,n, r): if (r < 0) or (n < r): return 0 r = min(r, n - r) return self.fact[n] * self.factinv[r] * self.factinv[n-r] % self.p C = combination(3*10**5,mod) P = md(K) n = len(P) P.sort() inv = {p:i for i,p in enumerate(P)} A = [math.gcd(a,K) for a in A] T = Counter(A) N = len(T) dp = [[0]*n for _ in range(len(T)+1)] dp[0][0] = 1 idx = 0 for k,v in T.items(): for j in range(n-1,-1,-1): p = P[j] res = 1 for _ in range(v,-1,-1): jdx = inv[math.gcd(p*res,K)] dp[idx+1][jdx] = (dp[idx+1][jdx] + dp[idx][inv[p]]*C.cmb(v,_))%mod res = math.gcd(res*k,K) idx += 1 print(dp[-1][-1])