結果

問題 No.2993 冪乗乗 mod 冪乗
ユーザー 👑 p-adicp-adic
提出日時 2023-11-09 13:19:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 187 bytes
コンパイル時間 428 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 77,744 KB
最終ジャッジ日時 2024-12-17 23:34:29
合計ジャッジ時間 11,296 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,736 KB
testcase_01 AC 35 ms
53,680 KB
testcase_02 AC 35 ms
52,804 KB
testcase_03 AC 38 ms
52,472 KB
testcase_04 AC 36 ms
52,952 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 42 ms
54,528 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 385 ms
76,972 KB
testcase_26 AC 404 ms
77,744 KB
testcase_27 AC 396 ms
77,444 KB
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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