結果

問題 No.2896 Monotonic Prime Factors
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-23 12:51:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,862 ms / 2,000 ms
コード長 391 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 82,848 KB
実行使用メモリ 260,960 KB
最終ジャッジ日時 2024-10-23 12:52:21
合計ジャッジ時間 32,062 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,106 ms
260,672 KB
testcase_01 AC 1,127 ms
260,396 KB
testcase_02 AC 1,090 ms
259,828 KB
testcase_03 AC 1,116 ms
260,332 KB
testcase_04 AC 1,862 ms
260,748 KB
testcase_05 AC 1,448 ms
259,916 KB
testcase_06 AC 1,435 ms
260,960 KB
testcase_07 AC 1,772 ms
259,456 KB
testcase_08 AC 1,834 ms
259,616 KB
testcase_09 AC 1,445 ms
259,580 KB
testcase_10 AC 1,372 ms
260,436 KB
testcase_11 AC 1,207 ms
259,392 KB
testcase_12 AC 1,167 ms
259,784 KB
testcase_13 AC 1,382 ms
260,396 KB
testcase_14 AC 1,474 ms
260,620 KB
testcase_15 AC 1,149 ms
260,344 KB
testcase_16 AC 1,244 ms
260,872 KB
testcase_17 AC 1,161 ms
260,028 KB
testcase_18 AC 1,536 ms
260,756 KB
testcase_19 AC 1,216 ms
259,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
M=998244353
fa=[1,1]
fb=[1,1]
for i in range(2,3*10**6+1):
  fa+=[fa[-1]*i%M]
  fb+=[fb[-1]*(M//i)*fb[M%i]*fa[M%i-1]*(-1)%M]
fc=lambda n,k:fa[n]*fb[k]*fb[n-k]%M if n>=k else 0
f=lambda b,c:fc(c-b+b-1,b-1)
c=0
for _ in range(n):
  a,b=map(int,input().split())
  i=2
  while i*i<=a:
    if a%i==0:
      while a%i==0:
        a//=i
        c+=1
    i+=1
  c+=a>1
  print(f(b,c))
0