結果

問題 No.2896 Monotonic Prime Factors
ユーザー ねしんねしん
提出日時 2024-09-20 22:08:35
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 501 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 230,352 KB
最終ジャッジ日時 2024-09-20 22:09:07
合計ジャッジ時間 30,960 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,080 ms
216,924 KB
testcase_01 AC 1,110 ms
217,412 KB
testcase_02 AC 1,113 ms
215,688 KB
testcase_03 AC 1,114 ms
216,996 KB
testcase_04 AC 1,896 ms
229,472 KB
testcase_05 RE -
testcase_06 AC 1,470 ms
229,976 KB
testcase_07 AC 1,761 ms
229,908 KB
testcase_08 AC 1,856 ms
229,396 KB
testcase_09 RE -
testcase_10 AC 1,482 ms
229,724 KB
testcase_11 AC 1,252 ms
229,692 KB
testcase_12 AC 1,216 ms
229,576 KB
testcase_13 AC 1,519 ms
229,564 KB
testcase_14 AC 1,613 ms
229,860 KB
testcase_15 AC 1,193 ms
229,576 KB
testcase_16 AC 1,319 ms
229,976 KB
testcase_17 AC 1,256 ms
229,600 KB
testcase_18 AC 1,705 ms
229,712 KB
testcase_19 AC 1,271 ms
229,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Q=int(input())
fact=[1,1]
invfact=[1,1]
MOD=998244353
for i in range(2,10*10**5+1):
	fact.append((fact[-1]*i)%MOD)
	invfact.append((invfact[-1]*pow(i,MOD-2,MOD))%MOD)
def factrize(A):
	c=0
	M=A
	for i in range(2,int(A**0.5)+3):
		if  M<i:
			break
		while M%i==0:
			M=M//i
			c+=1
	if M!=1:
		c+=1
	return c
def C(n,r):
	return (fact[n]*invfact[r]*invfact[n-r])%MOD
cnt=0
for i in range(Q):
	a,b=list(map(int,input().split()))
	cnt+=factrize(a)
	if cnt<b:
		print(0)
		continue
	print(C(cnt-1,cnt-b))
0