結果
問題 | No.2896 Monotonic Prime Factors |
ユーザー | ねしん |
提出日時 | 2024-09-20 22:07:01 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 501 bytes |
コンパイル時間 | 503 ms |
コンパイル使用メモリ | 82,440 KB |
実行使用メモリ | 246,776 KB |
最終ジャッジ日時 | 2024-09-20 22:08:04 |
合計ジャッジ時間 | 15,905 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,929 ms
237,696 KB |
testcase_01 | AC | 1,938 ms
238,208 KB |
testcase_02 | AC | 1,927 ms
237,696 KB |
testcase_03 | AC | 1,869 ms
238,208 KB |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
ソースコード
Q=int(input()) fact=[1,1] invfact=[1,1] MOD=998244353 for i in range(2,20*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))