結果

問題 No.2896 Monotonic Prime Factors
ユーザー るこーそーるこーそー
提出日時 2024-09-28 00:59:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 680 ms / 2,000 ms
コード長 611 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 112,532 KB
最終ジャッジ日時 2024-09-28 01:00:09
合計ジャッジ時間 8,851 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
83,328 KB
testcase_01 AC 76 ms
83,968 KB
testcase_02 AC 77 ms
83,712 KB
testcase_03 AC 79 ms
83,712 KB
testcase_04 AC 640 ms
112,384 KB
testcase_05 AC 680 ms
112,096 KB
testcase_06 AC 595 ms
112,532 KB
testcase_07 AC 528 ms
112,384 KB
testcase_08 AC 615 ms
112,380 KB
testcase_09 AC 669 ms
112,256 KB
testcase_10 AC 364 ms
107,704 KB
testcase_11 AC 197 ms
103,360 KB
testcase_12 AC 176 ms
103,484 KB
testcase_13 AC 404 ms
108,160 KB
testcase_14 AC 443 ms
110,172 KB
testcase_15 AC 151 ms
102,784 KB
testcase_16 AC 245 ms
105,224 KB
testcase_17 AC 202 ms
103,268 KB
testcase_18 AC 575 ms
111,864 KB
testcase_19 AC 195 ms
103,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def prime_divisors(x):
  res=0
  for p in range(2,int(x**0.5)+1):
    while x%p==0:
      res+=1
      x//=p
  if x>1:
    res+=1
  return res

MOD=998244353
M=16*10**5
fact=[1]*(M+1)
for i in range(M):
    fact[i+1]=fact[i]*(i+1)%MOD
ifact=[1]*(M+1)
ifact[M]=pow(fact[M],MOD-2,MOD)
for i in range(M,0,-1):
    ifact[i-1]=ifact[i]*i%MOD

def nCr(n,r):
    if n<r or n<0 or r<0:return 0
    return fact[n]*ifact[n-r]*ifact[r]%MOD

q=int(input())
ab=[list(map(int,input().split())) for _ in range(q)]
prime_cnt=0
for a,b in ab:
    prime_cnt+=prime_divisors(a)
    
    ans=nCr(prime_cnt-b+b-1,b-1)
    print(ans)
0