結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,396 KB
testcase_01 AC 36 ms
52,248 KB
testcase_02 AC 35 ms
52,312 KB
testcase_03 AC 37 ms
52,896 KB
testcase_04 AC 36 ms
52,292 KB
testcase_05 AC 42 ms
54,432 KB
testcase_06 AC 133 ms
76,816 KB
testcase_07 AC 53 ms
67,320 KB
testcase_08 WA -
testcase_09 AC 51 ms
65,436 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 297 ms
77,240 KB
testcase_13 AC 316 ms
77,064 KB
testcase_14 AC 726 ms
77,704 KB
testcase_15 AC 388 ms
77,276 KB
testcase_16 AC 460 ms
76,936 KB
testcase_17 AC 445 ms
77,264 KB
testcase_18 AC 497 ms
78,140 KB
testcase_19 AC 485 ms
78,044 KB
testcase_20 AC 476 ms
78,280 KB
testcase_21 AC 545 ms
78,280 KB
testcase_22 AC 470 ms
77,836 KB
testcase_23 WA -
testcase_24 AC 8,227 ms
80,720 KB
testcase_25 AC 8,899 ms
80,312 KB
testcase_26 AC 9,524 ms
81,960 KB
testcase_27 AC 9,610 ms
81,900 KB
testcase_28 AC 7,433 ms
80,656 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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