結果

問題 No.2993 冪乗乗 mod 冪乗
ユーザー 👑 testestesttestestest
提出日時 2023-11-09 17:06:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 363 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 377,856 KB
最終ジャッジ日時 2024-12-19 16:23:06
合計ジャッジ時間 153,534 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 3,048 ms
188,800 KB
testcase_02 AC 3,157 ms
188,800 KB
testcase_03 AC 3,069 ms
188,800 KB
testcase_04 AC 3,082 ms
188,800 KB
testcase_05 AC 3,098 ms
188,928 KB
testcase_06 AC 3,135 ms
188,800 KB
testcase_07 AC 3,230 ms
188,928 KB
testcase_08 AC 3,139 ms
188,800 KB
testcase_09 AC 3,214 ms
188,800 KB
testcase_10 AC 3,136 ms
188,800 KB
testcase_11 AC 4,450 ms
188,928 KB
testcase_12 AC 4,607 ms
188,928 KB
testcase_13 AC 4,038 ms
188,928 KB
testcase_14 AC 3,963 ms
188,928 KB
testcase_15 AC 4,460 ms
188,928 KB
testcase_16 AC 4,449 ms
188,928 KB
testcase_17 AC 4,486 ms
188,928 KB
testcase_18 AC 4,416 ms
188,928 KB
testcase_19 AC 4,577 ms
188,928 KB
testcase_20 AC 4,358 ms
188,928 KB
testcase_21 AC 4,378 ms
189,056 KB
testcase_22 AC 4,567 ms
188,928 KB
testcase_23 AC 4,387 ms
189,056 KB
testcase_24 AC 4,743 ms
189,056 KB
testcase_25 AC 4,740 ms
188,928 KB
testcase_26 AC 4,684 ms
188,928 KB
testcase_27 AC 4,748 ms
188,928 KB
testcase_28 AC 4,595 ms
188,928 KB
testcase_29 AC 9,877 ms
189,568 KB
testcase_30 AC 7,521 ms
377,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L=6**8
P=[[]for _ in range(L)]
for p in range(2,L):
	if not P[p]:
		for q in range(p,L,p):P[q].append(p)
def g(m,b,p):
	crr=m%p
	for n in range(22):
		if crr==1:break
		crr=pow(crr,b,p)
	return n
def f(B,N,M):
	E=max(N,max(g(M,B,p)for p in P[B]))
	return pow(M,B**E,B**(E+N))//(B**E)if E!=21 else-1
for _ in range(int(input())):print(f(*map(int,input().split())))
0