結果
問題 | No.2818 A Game I Play to Pass the Time |
ユーザー | highlighter |
提出日時 | 2024-04-27 11:59:02 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 795 bytes |
コンパイル時間 | 427 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 65,024 KB |
最終ジャッジ日時 | 2024-11-15 13:44:36 |
合計ジャッジ時間 | 6,095 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
ソースコード
from sys import stdin prime=[2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97] M,Q=map(int,stdin.readline().split()) def factorize(N): vec=[] for i in range(0,M): if N%prime[i]!=0: continue count=0 while N%prime[i]==0: N//=prime[i] count+=1 vec.append((prime[i],count)) return vec mod=998244353 inv=[0]*61 inv[1]=1 for i in range(2,61): inv[i]=mod-inv[mod%i]*(mod//i)%mod for i in range(Q): N,S=map(int,stdin.readline().split()) vec=factorize(N) ans=1 for p in vec: data=[0]*(p[1]+1) data[0]=1 for j in range(1,p[1]+1): data[j]=data[j-1]*p[0]%mod res=data[p[1]] mem=1 for j in range(1,p[1]+1): mem*=(S-2+j)%mod*inv[j]%mod mem%=mod res+=data[p[1]-j]*mem%mod res%=mod ans*=res ans%=mod ans*=S%mod ans%=mod print(ans)