結果

問題 No.2896 Monotonic Prime Factors
ユーザー loop0919loop0919
提出日時 2024-09-12 15:53:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 850 ms / 2,000 ms
コード長 686 bytes
コンパイル時間 499 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 200,376 KB
最終ジャッジ日時 2024-09-12 15:53:59
合計ジャッジ時間 11,291 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
182,784 KB
testcase_01 AC 112 ms
182,204 KB
testcase_02 AC 112 ms
183,356 KB
testcase_03 AC 111 ms
183,032 KB
testcase_04 AC 850 ms
199,348 KB
testcase_05 AC 627 ms
199,752 KB
testcase_06 AC 614 ms
200,100 KB
testcase_07 AC 685 ms
199,288 KB
testcase_08 AC 789 ms
198,900 KB
testcase_09 AC 611 ms
199,156 KB
testcase_10 AC 427 ms
198,668 KB
testcase_11 AC 261 ms
200,376 KB
testcase_12 AC 210 ms
199,664 KB
testcase_13 AC 449 ms
199,924 KB
testcase_14 AC 545 ms
199,212 KB
testcase_15 AC 174 ms
199,448 KB
testcase_16 AC 288 ms
198,944 KB
testcase_17 AC 226 ms
199,092 KB
testcase_18 AC 658 ms
199,420 KB
testcase_19 AC 239 ms
199,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

P = 998244353

# 階乗
factorial = [1]
for i in range(1, 16 * 10**5):
    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


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