結果

問題 No.2896 Monotonic Prime Factors
ユーザー loop0919loop0919
提出日時 2024-09-12 16:04:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 880 ms / 2,000 ms
コード長 730 bytes
コンパイル時間 406 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 199,296 KB
最終ジャッジ日時 2024-09-12 16:04:35
合計ジャッジ時間 10,452 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
181,504 KB
testcase_01 AC 109 ms
181,376 KB
testcase_02 AC 120 ms
181,760 KB
testcase_03 AC 112 ms
181,632 KB
testcase_04 AC 880 ms
198,784 KB
testcase_05 AC 614 ms
198,784 KB
testcase_06 AC 653 ms
198,528 KB
testcase_07 AC 655 ms
198,996 KB
testcase_08 AC 814 ms
198,784 KB
testcase_09 AC 603 ms
198,784 KB
testcase_10 AC 457 ms
198,528 KB
testcase_11 AC 245 ms
199,296 KB
testcase_12 AC 212 ms
198,912 KB
testcase_13 AC 482 ms
199,016 KB
testcase_14 AC 529 ms
198,656 KB
testcase_15 AC 176 ms
198,656 KB
testcase_16 AC 290 ms
198,528 KB
testcase_17 AC 230 ms
198,656 KB
testcase_18 AC 669 ms
198,912 KB
testcase_19 AC 241 ms
198,656 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


# 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