結果
問題 | No.2896 Monotonic Prime Factors |
ユーザー | detteiuu |
提出日時 | 2024-09-20 21:52:34 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,742 ms / 2,000 ms |
コード長 | 1,840 bytes |
コンパイル時間 | 330 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 268,600 KB |
最終ジャッジ日時 | 2024-09-20 21:53:26 |
合計ジャッジ時間 | 35,245 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,491 ms
263,096 KB |
testcase_01 | AC | 1,507 ms
262,840 KB |
testcase_02 | AC | 1,526 ms
263,220 KB |
testcase_03 | AC | 1,514 ms
263,092 KB |
testcase_04 | AC | 1,683 ms
264,088 KB |
testcase_05 | AC | 1,715 ms
264,240 KB |
testcase_06 | AC | 1,693 ms
264,080 KB |
testcase_07 | AC | 1,669 ms
264,172 KB |
testcase_08 | AC | 1,644 ms
264,600 KB |
testcase_09 | AC | 1,742 ms
264,348 KB |
testcase_10 | AC | 1,636 ms
268,600 KB |
testcase_11 | AC | 1,573 ms
264,996 KB |
testcase_12 | AC | 1,533 ms
264,612 KB |
testcase_13 | AC | 1,625 ms
268,492 KB |
testcase_14 | AC | 1,661 ms
260,504 KB |
testcase_15 | AC | 1,528 ms
262,424 KB |
testcase_16 | AC | 1,594 ms
266,656 KB |
testcase_17 | AC | 1,584 ms
264,892 KB |
testcase_18 | AC | 1,691 ms
262,684 KB |
testcase_19 | AC | 1,559 ms
264,112 KB |
ソースコード
class CP: def __init__(self, N): self.fact = [1] self.fact_inv = [1] for i in range(1, N+1): self.fact.append((self.fact[-1]*i)%MOD) self.fact_inv.append(pow(self.fact[-1], -1, MOD)) def C(self, N, K): if N >= K: return self.fact[N]*self.fact_inv[K]%MOD*self.fact_inv[N-K]%MOD else: return 0 def P(self, N, K): if N >= K: return self.fact[N]*self.fact_inv[N-K]%MOD else: return 0 class Eratosthenes: def __init__(self, n): self.isPrime = [True]*(n+1) self.minfactor = [-1]*(n+1) self.isPrime[0], self.isPrime[1] = False, False self.minfactor[1] = 1 for i in range(2, n+1): if self.isPrime[i]: self.minfactor[i] = i for j in range(i*2, n+1, i): self.isPrime[j] = False if self.minfactor[j] == -1: self.minfactor[j] = i def factorize(self, n): factor = [] C = 0 while n > 1: p = self.minfactor[n] cnt = 0 while self.minfactor[n] == p: n //= p cnt += 1 factor.append((p, cnt)) C += cnt return C def divisor(self, n): ans = [1] pf = self.factorize(n) for p, c in pf: L = len(ans) for i in range(L): v = 1 for _ in range(c): v *= p ans.append(ans[i]*v) return sorted(ans) Q = int(input()) AB = [list(map(int, input().split())) for _ in range(Q)] MOD = 998244353 E = Eratosthenes(10**5) cp = CP(10**6*2) cnt = 0 for A, B in AB: cnt += E.factorize(A) print(cp.C(cnt-1, B-1))