結果

問題 No.2896 Monotonic Prime Factors
ユーザー moon17moon17
提出日時 2024-09-20 22:56:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 797 ms / 2,000 ms
コード長 362 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 137,556 KB
最終ジャッジ日時 2024-09-20 22:56:43
合計ジャッジ時間 10,026 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 232 ms
105,472 KB
testcase_01 AC 297 ms
105,680 KB
testcase_02 AC 220 ms
105,344 KB
testcase_03 AC 242 ms
105,728 KB
testcase_04 AC 797 ms
136,832 KB
testcase_05 AC 404 ms
136,960 KB
testcase_06 AC 391 ms
137,256 KB
testcase_07 AC 715 ms
137,088 KB
testcase_08 AC 726 ms
137,116 KB
testcase_09 AC 418 ms
137,556 KB
testcase_10 AC 391 ms
130,728 KB
testcase_11 AC 304 ms
125,440 KB
testcase_12 AC 289 ms
124,396 KB
testcase_13 AC 467 ms
131,760 KB
testcase_14 AC 483 ms
134,348 KB
testcase_15 AC 274 ms
123,796 KB
testcase_16 AC 357 ms
127,232 KB
testcase_17 AC 290 ms
125,056 KB
testcase_18 AC 515 ms
136,824 KB
testcase_19 AC 322 ms
125,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(q,),*e=[[*map(int,s.split())]for s in open(0)]
M=998244353
N=2*10**6
F=[1]*N;l,f=F[:],F[:]
for i in range(2,N):F[i]=F[i-1]*i%M;l[i]=-(M//i)*l[M%i]%M;f[i]=f[i-1]*l[i]%M
c=lambda l,k:(k<=l)*F[l]*f[k]*f[l-k]%M
def pf(n):
 a,f=[],2
 while f*f<=n:
  if n%f:f+=1
  else:a+=[f];n//=f
 if n>1:a+=[n]
 return a
t=0
for a,b in e:
  l=len(pf(a))
  t+=l
  print(c(t-1,b-1))
0