結果

問題 No.2896 Monotonic Prime Factors
ユーザー rlangevinrlangevin
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
71,352 KB
testcase_01 AC 59 ms
71,664 KB
testcase_02 AC 61 ms
71,280 KB
testcase_03 AC 57 ms
71,028 KB
testcase_04 AC 143 ms
85,284 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 145 ms
85,380 KB
testcase_08 AC 141 ms
85,184 KB
testcase_09 RE -
testcase_10 AC 124 ms
84,948 KB
testcase_11 AC 98 ms
85,444 KB
testcase_12 AC 93 ms
85,548 KB
testcase_13 AC 132 ms
85,096 KB
testcase_14 AC 150 ms
85,124 KB
testcase_15 AC 79 ms
83,644 KB
testcase_16 AC 106 ms
85,484 KB
testcase_17 AC 96 ms
85,200 KB
testcase_18 AC 193 ms
85,792 KB
testcase_19 AC 98 ms
85,092 KB
権限があれば一括ダウンロードができます

ソースコード

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