結果

問題 No.2993 冪乗乗 mod 冪乗
ユーザー 👑 p-adicp-adic
提出日時 2023-11-02 16:38:27
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,102 bytes
コンパイル時間 522 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 329,308 KB
最終ジャッジ日時 2024-12-17 23:35:25
合計ジャッジ時間 149,848 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
146,464 KB
testcase_01 AC 41 ms
137,184 KB
testcase_02 AC 42 ms
143,064 KB
testcase_03 AC 44 ms
139,408 KB
testcase_04 AC 45 ms
140,676 KB
testcase_05 AC 63 ms
329,308 KB
testcase_06 AC 234 ms
78,960 KB
testcase_07 AC 67 ms
70,832 KB
testcase_08 AC 108 ms
76,712 KB
testcase_09 AC 78 ms
73,456 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 8,390 ms
78,340 KB
testcase_14 AC 4,291 ms
78,200 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 7,576 ms
80,392 KB
testcase_18 AC 5,324 ms
78,980 KB
testcase_19 AC 7,409 ms
79,620 KB
testcase_20 AC 6,986 ms
79,616 KB
testcase_21 AC 6,030 ms
78,696 KB
testcase_22 AC 5,609 ms
80,104 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 2,220 ms
78,476 KB
testcase_26 AC 983 ms
79,004 KB
testcase_27 AC 743 ms
76,892 KB
testcase_28 AC 2,541 ms
110,876 KB
testcase_29 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#誤解法(愚直冪乗)チェック
I,R=input,range
L=1000
P=[]
C=[0]*L
for i in R(2,L):
	if C[i]<1:
		P+=[i]
		j=i*2
		while j<L:C[j],j=1,j+i
def S(p):
	global n,u,f,q,l,B
	o=p-1
	for j in R(n):
		while o%f[j]<1:o//=f[j]
	o,n=(p-1)//o,n+1
	f+=[p]
	e=v=a=0
	while B%p<1:e,B=e+N,B//p
	r=pow(p,e)
	q+=[r]
	c=0
	while p**c<e*N+1:c+=1
	d=p*r
	while d/r<e*N+c:d*=p
	m=t=1-pow(M,o)
	i,s=[0,1],2
	if m==0:
		l+=[0]
	else:
		while t%p<1:t,v=t//p,v+1
		t=m
		if v<1:u=1
		else:
			for k in R(1,(e//v+1)*N+c+1):
				j=k
				while j%p<1:j=j//p
				while s<=j:
					i+=[0if s%p<1 else r-r//s*i[r%s]%r if i[r%s]else(r//s+1)*i[s-r%s]%r]
					s+=1
				a,t=a-t//(k//j)*i[j]%r,t*m
			l+=[pow(o,-1,r)*a%r]
for t in R(int(I())):
	B,N,M=map(int,I().split())
	D=B**N
	n=u=0
	f,q,l=[],[],[]
	for p in P:
		if B%p<1:S(p)
	if B>1:S(B)
	if u:a=-1
	else:
		a,r=0,1
		for k in R(n):
			b,c=[r,q[k]],[[1,0],[0,1]]
			i=r<q[k]
			j=1-i
			while b[j]:
				d=b[i]//b[j]
				c[i][i]-=d*c[j][i]
				c[i][j]-=d*c[j][j]
				b[i]-=d*b[j]
				i,j=j,i
			g=b[i]
			a,r=(l[k]%g+l[k]//g*r*c[i][0]+a//g*q[k]*c[i][1])%D,r*q[k]//g
	print(a)
0