結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,212 KB
testcase_01 AC 36 ms
53,028 KB
testcase_02 AC 36 ms
52,372 KB
testcase_03 AC 36 ms
52,744 KB
testcase_04 AC 37 ms
53,760 KB
testcase_05 AC 42 ms
54,616 KB
testcase_06 AC 99 ms
76,356 KB
testcase_07 AC 54 ms
66,340 KB
testcase_08 WA -
testcase_09 AC 49 ms
63,984 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 332 ms
76,784 KB
testcase_14 AC 522 ms
77,652 KB
testcase_15 AC 404 ms
76,760 KB
testcase_16 AC 456 ms
77,240 KB
testcase_17 AC 438 ms
76,772 KB
testcase_18 AC 495 ms
77,960 KB
testcase_19 AC 486 ms
77,744 KB
testcase_20 AC 498 ms
78,256 KB
testcase_21 AC 512 ms
78,012 KB
testcase_22 AC 480 ms
77,204 KB
testcase_23 WA -
testcase_24 AC 7,249 ms
80,116 KB
testcase_25 AC 7,296 ms
79,680 KB
testcase_26 AC 7,771 ms
82,408 KB
testcase_27 AC 7,984 ms
80,980 KB
testcase_28 AC 7,171 ms
80,148 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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