結果
問題 | No.2896 Monotonic Prime Factors |
ユーザー | ねしん |
提出日時 | 2024-09-20 22:10:49 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 501 bytes |
コンパイル時間 | 240 ms |
コンパイル使用メモリ | 82,528 KB |
実行使用メモリ | 240,204 KB |
最終ジャッジ日時 | 2024-09-20 22:12:02 |
合計ジャッジ時間 | 41,802 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,654 ms
239,292 KB |
testcase_01 | AC | 1,638 ms
239,144 KB |
testcase_02 | AC | 1,677 ms
239,136 KB |
testcase_03 | AC | 1,657 ms
238,988 KB |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | AC | 1,789 ms
239,888 KB |
testcase_12 | AC | 1,753 ms
238,944 KB |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | AC | 1,712 ms
239,080 KB |
testcase_16 | AC | 1,884 ms
238,496 KB |
testcase_17 | AC | 1,762 ms
238,884 KB |
testcase_18 | TLE | - |
testcase_19 | AC | 1,765 ms
238,532 KB |
ソースコード
Q=int(input()) fact=[1,1] invfact=[1,1] MOD=998244353 for i in range(2,15*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))