結果

問題 No.2896 Monotonic Prime Factors
ユーザー rlangevin
提出日時 2024-09-20 22:21:33
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,137 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 86,388 KB
最終ジャッジ日時 2024-09-20 22:21:37
合計ジャッジ時間 3,854 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 15 RE * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

class Factorization():
    def __init__(self, N):
        self.L = list(range(N + 1))
        for i in range(2, N + 1):
            if i != self.L[i]:
                continue
            for j in range(2 * i, N + 1, i):
                self.L[j] = i

    def get(self, n):
        if n <= 1:
            return []
        D = []
        while n != 1:
            cnt = 0
            now = self.L[n]
            while n % now == 0:
                cnt += 1
                n //= now
            D.append((now, cnt))
        return D


Q = int(input())
mod = 998244353
n = 505050
fact = [1] * (n + 1)
invfact = [1] * (n + 1)
for i in range(1, n):
    fact[i + 1] = ((i+1) * fact[i]) % mod
invfact[n] = pow(fact[n], mod - 2, mod)
for i in range(n - 1, -1, -1):
    invfact[i] = invfact[i + 1] * (i + 1) % mod

def comb(n, r):
    if n < 0 or r < 0 or n - r < 0:
        return 0
    return fact[n] * invfact[r] * invfact[n - r] % mod

F = Factorization(10**5+5)
now = 0
for i in range(Q):
    a, b = map(int, input().split())
    for _, v in F.get(a):
        now += v
    print(comb(now - 1, b - 1))
0