結果

問題 No.2993 冪乗乗 mod 冪乗
ユーザー 👑 p-adicp-adic
提出日時 2023-11-02 16:26:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,067 bytes
コンパイル時間 448 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 22,272 KB
最終ジャッジ日時 2024-12-17 23:33:28
合計ジャッジ時間 146,240 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
22,016 KB
testcase_01 AC 32 ms
11,136 KB
testcase_02 AC 32 ms
11,008 KB
testcase_03 AC 32 ms
11,136 KB
testcase_04 AC 32 ms
11,136 KB
testcase_05 AC 40 ms
11,008 KB
testcase_06 AC 172 ms
11,008 KB
testcase_07 AC 40 ms
11,008 KB
testcase_08 AC 46 ms
11,008 KB
testcase_09 AC 45 ms
11,264 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 6,305 ms
11,264 KB
testcase_14 AC 5,203 ms
11,008 KB
testcase_15 TLE -
testcase_16 AC 9,065 ms
11,136 KB
testcase_17 AC 8,883 ms
11,136 KB
testcase_18 AC 7,938 ms
11,136 KB
testcase_19 AC 7,462 ms
11,136 KB
testcase_20 AC 7,831 ms
11,136 KB
testcase_21 AC 7,146 ms
11,136 KB
testcase_22 AC 8,535 ms
11,008 KB
testcase_23 AC 5,977 ms
11,136 KB
testcase_24 AC 5,782 ms
11,264 KB
testcase_25 AC 5,610 ms
11,136 KB
testcase_26 AC 4,599 ms
11,008 KB
testcase_27 AC 3,444 ms
11,008 KB
testcase_28 AC 3,091 ms
11,008 KB
testcase_29 AC 3,269 ms
22,272 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.py:38: SyntaxWarning: invalid decimal literal
  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]

ソースコード

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,d))%d
	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],t*m%d
			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