結果

問題 No.2896 Monotonic Prime Factors
ユーザー るこーそーるこーそー
提出日時 2024-09-28 00:56:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 981 ms / 2,000 ms
コード長 624 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 243,856 KB
最終ジャッジ日時 2024-09-28 00:56:49
合計ジャッジ時間 12,555 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 235 ms
214,704 KB
testcase_01 AC 240 ms
215,428 KB
testcase_02 AC 265 ms
214,824 KB
testcase_03 AC 236 ms
214,748 KB
testcase_04 AC 857 ms
243,492 KB
testcase_05 AC 981 ms
243,592 KB
testcase_06 AC 844 ms
243,756 KB
testcase_07 AC 766 ms
243,856 KB
testcase_08 AC 810 ms
243,636 KB
testcase_09 AC 899 ms
243,528 KB
testcase_10 AC 563 ms
239,040 KB
testcase_11 AC 366 ms
234,532 KB
testcase_12 AC 332 ms
234,436 KB
testcase_13 AC 606 ms
239,672 KB
testcase_14 AC 639 ms
241,332 KB
testcase_15 AC 308 ms
233,456 KB
testcase_16 AC 441 ms
236,580 KB
testcase_17 AC 349 ms
234,264 KB
testcase_18 AC 761 ms
243,264 KB
testcase_19 AC 368 ms
234,696 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
fact=[1]*(10**7+1)
for i in range(10**7):
    fact[i+1]=fact[i]*(i+1)%MOD
ifact=[1]*(10**7+1)
ifact[10**7]=pow(fact[10**7],MOD-2,MOD)
for i in range(10**7,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