結果

問題 No.2896 Monotonic Prime Factors
ユーザー loop0919loop0919
提出日時 2024-09-12 16:35:40
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 774 bytes
コンパイル時間 478 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 200,324 KB
最終ジャッジ日時 2024-09-12 16:35:51
合計ジャッジ時間 10,355 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
181,632 KB
testcase_01 AC 138 ms
181,376 KB
testcase_02 AC 109 ms
181,504 KB
testcase_03 AC 109 ms
181,504 KB
testcase_04 AC 814 ms
198,780 KB
testcase_05 RE -
testcase_06 AC 653 ms
199,296 KB
testcase_07 AC 663 ms
198,920 KB
testcase_08 AC 816 ms
198,528 KB
testcase_09 RE -
testcase_10 AC 462 ms
198,528 KB
testcase_11 AC 241 ms
198,784 KB
testcase_12 AC 215 ms
198,676 KB
testcase_13 AC 454 ms
198,912 KB
testcase_14 AC 559 ms
198,528 KB
testcase_15 AC 178 ms
198,912 KB
testcase_16 AC 294 ms
198,528 KB
testcase_17 AC 263 ms
199,040 KB
testcase_18 AC 646 ms
198,912 KB
testcase_19 AC 244 ms
198,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 異常系(階乗全列挙不足)

P = 998244353

# 階乗
factorial = [1]
for i in range(1, 16 * 10**5 - 1):
    factorial.append(factorial[-1] * i % P)


# 二項係数
def comb(n, r):
    if n < r:
        return 0

    return factorial[n] * pow(factorial[r], P - 2, P) % P * pow(factorial[n - r], P - 2, P) % P


# 素因数の個数
def count_prime(n):
    count = 0

    while n % 2 == 0:
        n //= 2
        count += 1

    p = 3
    while p**2 <= n:
        if n % p == 0:
            n //= p
            count += 1
        else:
            p += 2

    if n > 1:
        count += 1

    return count


# solve
Q = int(input())
count = 0

for _ in range(Q):
    A, B = map(int, input().split())
    count += count_prime(A)
    print(comb(count - 1, B - 1))
0