結果

問題 No.2993 冪乗乗 mod 冪乗
ユーザー 👑 p-adicp-adic
提出日時 2023-11-09 13:33:05
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 199 bytes
コンパイル時間 496 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 82,268 KB
最終ジャッジ日時 2024-12-17 23:41:47
合計ジャッジ時間 88,528 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,428 KB
testcase_01 AC 39 ms
52,180 KB
testcase_02 AC 39 ms
53,136 KB
testcase_03 AC 39 ms
52,072 KB
testcase_04 AC 39 ms
52,776 KB
testcase_05 AC 45 ms
54,124 KB
testcase_06 AC 176 ms
77,324 KB
testcase_07 AC 58 ms
67,988 KB
testcase_08 AC 53 ms
64,140 KB
testcase_09 AC 56 ms
65,532 KB
testcase_10 AC 1,333 ms
77,360 KB
testcase_11 AC 2,131 ms
78,812 KB
testcase_12 AC 440 ms
77,084 KB
testcase_13 AC 532 ms
77,968 KB
testcase_14 AC 2,778 ms
79,036 KB
testcase_15 AC 2,099 ms
78,452 KB
testcase_16 AC 2,473 ms
78,092 KB
testcase_17 AC 2,097 ms
78,348 KB
testcase_18 AC 2,957 ms
78,348 KB
testcase_19 AC 2,364 ms
77,932 KB
testcase_20 AC 2,511 ms
78,004 KB
testcase_21 AC 2,857 ms
78,464 KB
testcase_22 AC 2,488 ms
78,316 KB
testcase_23 AC 9,007 ms
80,708 KB
testcase_24 AC 8,913 ms
80,524 KB
testcase_25 AC 9,668 ms
80,752 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#誤解法(n=2N+7に限定する愚直冪乗)チェック
I=input
for t in[0]*int(I()):
	B,N,M=map(int,I().split())
	D=B**N
	E=B**7*D*D
	P=pow(M,E,E*D)-1
	a=P//E
	print(-1if(P-a*E)%(E*D)else a%D)
0